/* Windows Page Specific Styles */
.bg-windows {
    background-color: #0078d7;
}

.btn-windows {
    background-color: #0078d7;
    color: white;
    border: none;
}

.btn-windows:hover {
    background-color: #106ebe;
    color: white;
}

/* Version Cards */
.version-card {
    padding: 15px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.version-card:hover {
    border-color: #0078d7;
    background-color: rgba(0, 120, 215, 0.05);
}

.version-card.active {
    border-color: #0078d7;
    background-color: rgba(0, 120, 215, 0.1);
    box-shadow: 0 0 0 2px rgba(0, 120, 215, 0.3);
}

.version-card h5 {
    font-size: 16px;
    margin-bottom: 5px;
}

/* Download Table */
.download-table {
    font-size: 14px;
}

.download-table th {
    white-space: nowrap;
}

.download-table .hash {
    font-family: monospace;
    color: #6c757d;
    font-size: 12px;
}

.download-btn {
    min-width: 80px;
}

/* Server Selection */
.server-card {
    padding: 10px;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.server-card:hover {
    border-color: #0078d7;
}

.server-card.active {
    border-color: #0078d7;
    background-color: rgba(0, 120, 215, 0.1);
}

.server-name {
    font-weight: 600;
    font-size: 14px;
}

.server-status {
    font-size: 12px;
}

.server-status .fa-circle {
    font-size: 8px;
}

.server-status.online {
    color: #28a745;
}

.server-status.offline {
    color: #dc3545;
}

.server-speed {
    font-size: 11px;
    color: #6c757d;
}

/* Compatibility Check */
.compatibility-check {
    margin-bottom: 15px;
}

.check-item {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.check-item:last-child {
    border-bottom: none;
}

.check-icon {
    width: 36px;
    height: 36px;
    background-color: rgba(0, 120, 215, 0.1);
    color: #0078d7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 16px;
}

.check-info h6 {
    margin-bottom: 2px;
    font-size: 14px;
}

.check-result {
    font-size: 12px;
}

.check-result.success {
    color: #28a745;
}

.check-result.warning {
    color: #ffc107;
}

.check-result.danger {
    color: #dc3545;
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    .download-table {
        font-size: 12px;
    }
    
    .download-btn {
        min-width: auto;
        padding: 3px 6px;
        font-size: 12px;
    }
    
    .version-card h5 {
        font-size: 14px;
    }
}