.gnss-offline-rtk-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 80vh;
    gap: 10px;
}

#map {
    height: 100%;
    background: #f0f0f0;
    border-radius: 5px;
}

.control-panel {
    overflow-y: auto;
    padding: 10px;
    background: #f5f5f5;
    border-radius: 5px;
}

.input-group {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: white;
}

.status-display {
    background: #f0f0f0;
    padding: 10px;
    border-radius: 5px;
    margin: 10px 0;
    color: black;
}

button {
    padding: 8px 15px;
    background: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
    margin-right: 5px;
    margin-bottom: 5px;
    border-radius: 4px;
}

button:disabled {
    background: #cccccc;
    cursor: not-allowed;
}

.accuracy-circle {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 5px;
}

.high-accuracy { background-color: #4CAF50; }
.medium-accuracy { background-color: #FFC107; }
.low-accuracy { background-color: #F44336; }

.gnss-system-badge {
    display: inline-block;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 0.8em;
    margin-right: 3px;
}

.gps-badge { background-color: #4CAF50; color: white; }
.glonass-badge { background-color: #2196F3; color: white; }
.beidou-badge { background-color: #FF9800; color: black; }
.galileo-badge { background-color: #9C27B0; color: white; }

select[multiple] {
    height: auto;
    min-height: 100px;
    width: 100%;
}

#satellites-container {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 5px;
}

.satellite-info {
    background: #e0e0e0;
    padding: 3px 6px;
    border-radius: 3px;
    font-size: 0.8em;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.sub-options {
    margin-top: 10px;
    padding-left: 15px;
    border-left: 2px solid #ddd;
}