body {
    margin: 0;
}
#info {
    position: absolute;
    top: 0px;
    width: 100%;
    padding: 5px;
    box-sizing: border-box;
    text-align: center;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
    z-index: 1;
}
a {
    color: #085078;
}
#container {
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
}
#ui-panel {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 300px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 10;
}
#filters {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#toggle-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 3px;
    cursor: pointer;
    color: white;
    text-align: center;
    line-height: 20px;
    font-size: 12px;
}
#follow-iss {
    margin-left: 10px;
    padding: 5px 10px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 3px;
    color: white;
    cursor: pointer;
    font-size: 12px;
}
#iss-filter:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
#ui-panel.collapsed #filters,
#ui-panel.collapsed #data-display {
    display: none;
}
#ui-panel.collapsed {
    width: 20px;
    height: 20px;
    padding: 0;
}
#ui-panel.collapsed #toggle-btn {
    width: 20px;
    height: 20px;
    line-height: 20px;
    font-size: 12px;
    top: 0;
    right: 0;
}
#controls {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
button {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    color: white;
}
button:hover {
    background: rgba(255, 255, 255, 0.3);
}
#filters {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
label {
    color: white;
}
#data-display {
    margin-top: 20px;
    max-height: 300px;
    overflow-y: auto;
    color: white;
}
#ship-info-panel {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 350px;
    background: rgba(0, 20, 40, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    z-index: 100;
    display: none;
    animation: slideIn 0.3s ease-out;
}
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50%) translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }
}
#ship-info-content {
    padding: 20px;
    color: white;
}
#ship-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
}
#ship-info-header h3 {
    margin: 0;
    color: #00ffff;
    font-size: 18px;
}
#close-ship-info {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    color: white;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
#close-ship-info:hover {
    background: rgba(255, 255, 255, 0.2);
}
#ship-details {
    display: grid;
    gap: 10px;
}
.ship-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.ship-detail-row:last-child {
    border-bottom: none;
}
.detail-label {
    font-weight: bold;
    color: #cccccc;
    font-size: 14px;
}
.detail-value {
    color: #ffffff;
    font-size: 14px;
    text-align: right;
}