/* Support Page Specific Styles */

/* Download item styling that works with service cards */
.download-grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.download-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

.download-item:hover {
    background: #f1f5f9;
    border-color: #2563eb;
}

.download-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.download-btn {
    padding: 0.375rem 0.75rem;
    background: #2563eb;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    transition: background 0.2s ease;
}

.download-btn:hover {
    background: #1d4ed8;
}

/* Status indicators */
.status-indicator {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 0.5rem;
}

.status-online { background: #10b981; }
.status-maintenance { background: #f59e0b; }
.status-offline { background: #ef4444; }

/* Quick links section */
.quick-links {
    background: linear-gradient(135deg, #1e293b, #334155);
    border-radius: 16px;
    padding: 2rem;
    margin: 3rem 0;
    color: white;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.quick-link {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
}

.quick-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    color: white;
}

.quick-links-controls {
    display: flex;
    justify-content: center;
    margin-top: 0.75rem;
}

.reset-btn {
    background: rgba(255,255,255,0.12);
    color: #e5e7eb;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 0.85rem;
    cursor: pointer;
}
.reset-btn:hover {
    background: rgba(255,255,255,0.2);
}

/* Quick Links enhancements */
.quick-links-grid { position: relative; }
.quick-link { position: relative; }
.quick-link .pin-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255,255,255,0.9);
    border: 1px solid #e2e8f0;
    color: #334155;
    border-radius: 999px;
    padding: 4px 8px;
    font-size: 0.85rem;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.quick-link .pin-btn[aria-pressed="true"] { background: #fef3c7; border-color: #fde68a; }
.quick-link .badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: #e0e7ff;
    color: #3730a3;
    border-radius: 999px;
    padding: 2px 8px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* One-time tooltip for pin UI */
.pin-tooltip {
    position: absolute;
    top: -36px;
    right: 0;
    background: #111827;
    color: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 0.8rem;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 10;
}

@media (max-width: 480px) {
    .quick-link .pin-btn {
        padding: 3px 6px;
        font-size: 0.75rem;
    }
    .quick-link .badge {
        font-size: 0.7rem;
        padding: 1px 6px;
    }
}

/* Service status section */
.service-status {
    background: #f8fafc;
    padding: 2rem 0;
}

.service-status .container {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.service-status h3 {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.service-status-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}