/* ===== INTERNET EXPLORER MENU BAR ===== */
.ie-menubar {
    display: flex;
    background: #C0C0C0;
    border-bottom: 1px solid #808080;
    padding: 0 2px;
    height: 22px;
    align-items: center;
    flex-shrink: 0;
}

.ie-menu-item {
    padding: 2px 8px;
    font-size: 11px;
    color: #000;
    cursor: default;
    position: relative;
    font-family: "Tahoma", "Geneva", sans-serif;
}

.ie-menu-item:hover {
    background: #000080;
    color: #FFF;
}

.ie-menu-item.active {
    background: #000080;
    color: #FFF;
}

/* Dropdown */
.ie-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    background: #C0C0C0;
    border: 2px solid;
    border-color: #FFFFFF #404040 #404040 #FFFFFF;
    box-shadow: 2px 2px 0 rgba(0,0,0,0.3);
    z-index: 9999;
    padding: 2px;
}

.ie-menu-item:hover .ie-dropdown,
.ie-menu-item.active .ie-dropdown {
    display: block;
}

.ie-dropdown-item {
    padding: 3px 20px 3px 24px;
    font-size: 11px;
    color: #000;
    cursor: default;
    white-space: nowrap;
    font-family: "Tahoma", "Geneva", sans-serif;
}

.ie-dropdown-item:hover {
    background: #000080;
    color: #FFF;
}

.ie-dropdown-item.disabled {
    color: #808080;
}

.ie-dropdown-item.disabled:hover {
    background: transparent;
    color: #808080;
}

.ie-dropdown-separator {
    height: 1px;
    background: #808080;
    margin: 3px 4px;
    border-bottom: 1px solid #FFF;
}

/* Check mark for dropdown items */
.ie-dropdown-item.checked {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpolyline points='1,5 4,8 9,2' fill='none' stroke='%23000' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 6px center;
}

.ie-dropdown-item.checked:hover {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpolyline points='1,5 4,8 9,2' fill='none' stroke='%23FFF' stroke-width='1.5'/%3E%3C/svg%3E");
    background-color: #000080;
    background-repeat: no-repeat;
    background-position: 6px center;
}

/* ===== IE TOOLBAR ===== */
.ie-toolbar {
    display: flex;
    align-items: center;
    background: #C0C0C0;
    border-bottom: 1px solid #808080;
    padding: 2px 4px;
    gap: 1px;
    flex-shrink: 0;
    height: 30px;
}

.ie-toolbar-btn {
    background: #C0C0C0;
    border: 1px solid transparent;
    padding: 2px 5px;
    font-size: 11px;
    cursor: default;
    display: flex;
    align-items: center;
    gap: 3px;
    color: #000;
    font-family: "Tahoma", "Geneva", sans-serif;
    white-space: nowrap;
    min-width: 24px;
    justify-content: center;
    height: 24px;
}

.ie-toolbar-btn:hover {
    border: 1px solid;
    border-color: #FFFFFF #808080 #808080 #FFFFFF;
}

.ie-toolbar-btn:active {
    border: 1px solid;
    border-color: #808080 #FFFFFF #FFFFFF #808080;
}

.ie-toolbar-btn:disabled {
    color: #808080;
    text-shadow: 1px 1px #FFF;
    border-color: transparent;
}

.ie-toolbar-btn:disabled:hover {
    border-color: transparent;
}

.ie-toolbar-btn img {
    width: 18px;
    height: 18px;
}

.ie-toolbar-separator {
    width: 2px;
    height: 22px;
    background: #808080;
    border-right: 1px solid #FFF;
    margin: 0 2px;
    flex-shrink: 0;
}

/* ===== IE ADDRESS BAR ===== */
.ie-address-bar {
    display: flex;
    align-items: center;
    background: #C0C0C0;
    border-bottom: 1px solid #808080;
    padding: 2px 4px;
    gap: 4px;
    flex-shrink: 0;
    height: 26px;
}

.ie-address-label {
    font-size: 11px;
    color: #000;
    white-space: nowrap;
    font-family: "Tahoma", "Geneva", sans-serif;
    min-width: 60px;
}

.ie-address-input {
    flex-grow: 1;
    border: 2px inset;
    border-color: #808080 #FFFFFF #FFFFFF #808080;
    background: #FFF;
    height: 20px;
    padding: 1px 4px;
    font-size: 11px;
    font-family: "Tahoma", "Geneva", sans-serif;
    color: #000;
    outline: none;
}

.ie-address-input:focus {
    background: #FFFFF0;
}

.ie-go-btn {
    background: #C0C0C0;
    border: 2px solid;
    border-color: #FFFFFF #808080 #808080 #FFFFFF;
    padding: 1px 8px;
    font-size: 11px;
    cursor: default;
    font-family: "Tahoma", "Geneva", sans-serif;
    color: #000;
    height: 20px;
}

.ie-go-btn:active {
    border-color: #808080 #FFFFFF #FFFFFF #808080;
}

/* ===== IE CONTENT ===== */
#internet-explorer-window .window-content {
    padding: 0;
    margin: 0;
    border: none;
    background: #808080;
}

.ie-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: #FFF;
    position: relative;
    overflow: hidden;
    border: 2px inset;
    border-color: #808080 #FFFFFF #FFFFFF #808080;
    margin: 2px;
    flex: 1;
}

#ie-iframe {
    width: 100%;
    flex-grow: 1;
    border: none;
    background: #FFF;
}

/* ===== IE STATUS BAR ===== */
.ie-statusbar {
    display: flex;
    align-items: center;
    background: #C0C0C0;
    border-top: 2px solid #FFFFFF;
    padding: 1px 6px;
    height: 22px;
    flex-shrink: 0;
    gap: 4px;
    box-shadow: inset 0 1px 0 #DFDFDF;
}

.ie-status-text {
    font-size: 11px;
    color: #000;
    flex-grow: 1;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-family: "Tahoma", "Geneva", sans-serif;
}

.ie-status-zone {
    border: 1px inset #808080;
    padding: 0 8px;
    font-size: 10px;
    color: #000;
    font-family: "Tahoma", "Geneva", sans-serif;
    white-space: nowrap;
    height: 18px;
    display: flex;
    align-items: center;
}

/* ===== IE STARTUP PAGE ===== */
.ie-startup-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 40px 20px;
    background: linear-gradient(180deg, #FFFFFF 0%, #E8E8E8 100%);
}

.ie-startup-logo {
    font-size: 36px;
    font-weight: bold;
    color: #000080;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.ie-startup-logo img {
    width: 48px;
    height: 48px;
}

.ie-startup-title {
    font-size: 14px;
    color: #000080;
    margin-bottom: 5px;
    font-family: "Tahoma", "Geneva", sans-serif;
}

.ie-startup-subtitle {
    font-size: 11px;
    color: #555;
    margin-bottom: 30px;
    font-family: "Tahoma", "Geneva", sans-serif;
}

.ie-startup-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
    max-width: 300px;
}

.ie-startup-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: #FFF;
    border: 1px solid #CCC;
    cursor: pointer;
    font-size: 12px;
    color: #000;
    font-family: "Tahoma", "Geneva", sans-serif;
    transition: border-color 0.1s;
}

.ie-startup-link:hover {
    border-color: #000080;
    background: #F0F0FF;
}

.ie-startup-link img {
    width: 24px;
    height: 24px;
}

.ie-startup-link span {
    flex-grow: 1;
}

/* ===== LOADING ANIMATION ===== */
.ie-loading {
    display: none;
    width: 16px;
    height: 16px;
    border: 2px solid #000080;
    border-top-color: transparent;
    border-radius: 50%;
    animation: ie-spin 0.6s linear infinite;
    flex-shrink: 0;
}

@keyframes ie-spin {
    to { transform: rotate(360deg); }
}

.ie-loading.visible {
    display: inline-block;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 640px) {
    .ie-toolbar-btn span {
        display: none;
    }
    .ie-address-label {
        display: none;
    }
}
