:root {
    --srq-bg: #f2efe8;
    --srq-text: #1c1c1c;
    --srq-primary: #d65108;
    --srq-primary-dark: #a93e04;
    --srq-card: #fffaf2;
}

body {
    background: radial-gradient(circle at 15% 20%, #ffe0bd 0%, transparent 35%),
                radial-gradient(circle at 85% 10%, #f7ccb4 0%, transparent 30%),
                linear-gradient(180deg, #f6f2ea 0%, #efe8dd 100%);
    color: var(--srq-text);
    min-height: 100vh;
}

.srq-header {
    background: rgba(255, 250, 242, 0.9);
    backdrop-filter: blur(6px);
}

.srq-brand {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-decoration: none;
    color: var(--srq-text);
}

.hero-card {
    background: linear-gradient(130deg, #fff6dd, #ffe9d6 55%, #ffd6b8);
    border: 1px solid rgba(214, 81, 8, 0.15);
}

.feature-card {
    background: var(--srq-card);
    border: 1px solid rgba(28, 28, 28, 0.1);
}

.btn-primary {
    --bs-btn-bg: var(--srq-primary);
    --bs-btn-border-color: var(--srq-primary);
    --bs-btn-hover-bg: var(--srq-primary-dark);
    --bs-btn-hover-border-color: var(--srq-primary-dark);
}

#autocomplete-results {
    max-height: 260px;
    overflow-y: auto;
    position: absolute;
    width: 100%;
    z-index: 20;
}

.cover-thumb {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    object-fit: cover;
}

.cover-placeholder {
    display: inline-block;
    width: 32px;
    height: 32px;
    border-radius: 4px;
    background: #e9ecef;
}

.now-playing-bar {
    background: linear-gradient(90deg, #1db954 0%, #158a3c 100%);
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.now-playing-label {
    opacity: 0.9;
    font-size: 0.8rem;
}

.np-cover {
    width: 36px;
    height: 36px;
    border-radius: 4px;
    object-fit: cover;
}

.suggestion-card {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    min-width: 180px;
    max-width: 220px;
    background: #f8f9fa;
}

.suggestion-card .smaller {
    font-size: 0.75rem;
}

.suggestion-row td {
    background-color: #f0f7ff;
    border-top: none;
}

#request-table td:last-child {
    width: 1%;
    white-space: nowrap;
}

#request-table .btn {
    padding: 0.15rem 0.4rem;
    font-size: 0.75rem;
}

@media (max-width: 767px) {
    .form-control-lg {
        min-height: 48px;
        font-size: 16px;
    }

    #request-table td:nth-child(3) {
        max-width: 180px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}
