/* ==============================================
   Requests Page - Premium Refined Design
   All styles scoped to .requests-page to avoid conflicts
   ============================================== */

.requests-page {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 32px;
    max-width: 1440px;
    margin: 0 auto;
}

/* ==============================================
   Page Header
   ============================================== */
.requests-page .requests-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.requests-page .requests-header-left h1 {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    letter-spacing: -0.5px;
}

.requests-page .requests-header-left p {
    font-size: 14px;
    color: var(--text-tertiary);
    margin: 6px 0 0;
    font-weight: 400;
}

.requests-page .btn-new-request {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 20px;
    background: var(--text-primary);
    border: none;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 500;
    color: var(--bg-primary);
    cursor: pointer;
    transition: all 0.2s ease;
}

.requests-page .btn-new-request:hover {
    opacity: 0.85;
    transform: translateY(-1px);
}

.requests-page .btn-new-request svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.5;
}

/* ==============================================
   Stats Row
   ============================================== */
.requests-page .requests-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.requests-page .stat-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    transition: border-color 0.2s ease;
}

.requests-page .stat-card:hover {
    border-color: var(--border-hover, rgba(255,255,255,0.15));
}

.requests-page .stat-card-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.requests-page .stat-card-icon svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.requests-page .stat-card-icon.total {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(99, 102, 241, 0.05));
    color: #818cf8;
}

.requests-page .stat-card-icon.open {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.15), rgba(251, 191, 36, 0.05));
    color: #fbbf24;
}

.requests-page .stat-card-icon.fulfilled {
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.15), rgba(52, 211, 153, 0.05));
    color: #34d399;
}

.requests-page .stat-card-icon.urgent {
    background: linear-gradient(135deg, rgba(248, 113, 113, 0.15), rgba(248, 113, 113, 0.05));
    color: #f87171;
}

.requests-page .stat-card-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.requests-page .stat-card-value {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1;
    letter-spacing: -0.5px;
}

.requests-page .stat-card-label {
    font-size: 12px;
    color: var(--text-tertiary);
    font-weight: 400;
}

/* ==============================================
   Filters Bar
   ============================================== */
.requests-page .requests-filters {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 4px 0;
}

.requests-page .search-box {
    position: relative;
    flex: 1;
    max-width: 280px;
}

.requests-page .search-box svg {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    stroke: var(--text-tertiary);
    fill: none;
    stroke-width: 2;
    pointer-events: none;
}

.requests-page .search-box input {
    width: 100%;
    padding: 10px 14px 10px 42px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 13px;
    color: var(--text-primary);
    transition: all 0.2s ease;
}

.requests-page .search-box input:focus {
    outline: none;
    border-color: var(--text-tertiary);
    background: var(--bg-secondary);
}

.requests-page .search-box input::placeholder {
    color: var(--text-tertiary);
}

.requests-page .filter-tabs {
    display: flex;
    gap: 2px;
    padding: 3px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
}

.requests-page .filter-tab {
    padding: 8px 14px;
    background: transparent;
    border: none;
    border-radius: 7px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-tertiary);
    cursor: pointer;
    transition: all 0.15s ease;
}

.requests-page .filter-tab:hover {
    color: var(--text-secondary);
}

.requests-page .filter-tab.active {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.requests-page .view-switcher {
    display: flex;
    gap: 2px;
    margin-left: auto;
    padding: 3px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
}

.requests-page .view-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: transparent;
    border: none;
    border-radius: 7px;
    cursor: pointer;
    color: var(--text-tertiary);
    transition: all 0.15s ease;
}

.requests-page .view-btn:hover {
    color: var(--text-secondary);
}

.requests-page .view-btn.active {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.requests-page .view-btn svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

/* ==============================================
   Requests Grid
   ============================================== */
.requests-page .requests-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 16px;
}

/* ==============================================
   Request Card
   ============================================== */
.requests-page .request-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.25s ease;
}

.requests-page .request-card:hover {
    border-color: var(--border-hover, rgba(255,255,255,0.15));
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.requests-page .request-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
}

.requests-page .request-badges {
    display: flex;
    gap: 6px;
}

.requests-page .badge {
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.requests-page .badge-priority {
    background: rgba(248, 113, 113, 0.12);
    color: #f87171;
}

.requests-page .badge-priority.medium {
    background: rgba(99, 102, 241, 0.12);
    color: #818cf8;
}

.requests-page .badge-priority.low {
    background: rgba(148, 163, 184, 0.12);
    color: #94a3b8;
}

.requests-page .badge-priority.high {
    background: rgba(251, 191, 36, 0.12);
    color: #fbbf24;
}

.requests-page .badge-status {
    background: rgba(251, 191, 36, 0.12);
    color: #fbbf24;
}

.requests-page .badge-status.in_progress {
    background: rgba(99, 102, 241, 0.12);
    color: #818cf8;
}

.requests-page .badge-status.fulfilled {
    background: rgba(52, 211, 153, 0.12);
    color: #34d399;
}

.requests-page .badge-status.cancelled {
    background: rgba(148, 163, 184, 0.12);
    color: #94a3b8;
}

.requests-page .request-actions {
    display: flex;
    gap: 4px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.requests-page .request-card:hover .request-actions {
    opacity: 1;
}

.requests-page .btn-action {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    color: var(--text-tertiary);
    transition: all 0.15s ease;
}

.requests-page .btn-action:hover {
    color: var(--text-primary);
    border-color: var(--text-tertiary);
}

.requests-page .btn-action.delete:hover {
    background: rgba(248, 113, 113, 0.1);
    border-color: rgba(248, 113, 113, 0.3);
    color: #f87171;
}

.requests-page .btn-action svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

/* Card Body */
.requests-page .request-card-body {
    padding: 18px;
    cursor: pointer;
}

/* Contact Section */
.requests-page .request-contact {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.requests-page .contact-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.requests-page .contact-icon svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
}

.requests-page .contact-icon.club {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(99, 102, 241, 0.05));
    color: #818cf8;
}

.requests-page .contact-icon.agent {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.15), rgba(251, 191, 36, 0.05));
    color: #fbbf24;
}

.requests-page .contact-icon.coach {
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.15), rgba(52, 211, 153, 0.05));
    color: #34d399;
}

.requests-page .contact-icon.other {
    background: linear-gradient(135deg, rgba(148, 163, 184, 0.15), rgba(148, 163, 184, 0.05));
    color: #94a3b8;
}

.requests-page .contact-info h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 3px;
    letter-spacing: -0.2px;
}

.requests-page .contact-info p {
    font-size: 12px;
    color: var(--text-tertiary);
    margin: 0;
}

/* Profile Section */
.requests-page .request-profile {
    padding: 14px;
    background: var(--bg-secondary);
    border-radius: 12px;
    margin-bottom: 14px;
}

.requests-page .profile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.requests-page .profile-label {
    font-size: 10px;
    font-weight: 600;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.requests-page .position-tag {
    padding: 5px 12px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-primary);
}

.requests-page .profile-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.requests-page .profile-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.requests-page .profile-item-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.requests-page .profile-item-icon svg {
    width: 14px;
    height: 14px;
    stroke: var(--text-tertiary);
    fill: none;
    stroke-width: 2;
}

.requests-page .profile-item-content {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.requests-page .profile-item-label {
    font-size: 9px;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.4px;
    font-weight: 500;
}

.requests-page .profile-item-value {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-primary);
}

.requests-page .profile-item-value.budget {
    color: #34d399;
}

/* Notes */
.requests-page .request-notes {
    padding: 12px 14px;
    background: var(--bg-secondary);
    border-radius: 10px;
    border-left: 3px solid var(--text-tertiary);
}

.requests-page .request-notes p {
    font-size: 12px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
    font-style: italic;
}

/* Card Footer */
.requests-page .request-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    border-top: 1px solid var(--border);
}

.requests-page .request-meta {
    font-size: 11px;
    color: var(--text-tertiary);
    font-weight: 400;
}

.requests-page .btn-find-match {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.15s ease;
}

.requests-page .btn-find-match:hover {
    background: var(--bg-secondary);
    border-color: var(--text-tertiary);
}

.requests-page .btn-find-match svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

/* ==============================================
   List View
   ============================================== */
.requests-page .requests-table {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
}

.requests-page .requests-table-header {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.5fr 1fr 1fr 100px;
    gap: 16px;
    padding: 14px 20px;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
}

.requests-page .table-col {
    font-size: 10px;
    font-weight: 600;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.requests-page .requests-table-body {
    max-height: 600px;
    overflow-y: auto;
}

.requests-page .table-row {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.5fr 1fr 1fr 100px;
    gap: 16px;
    padding: 14px 20px;
    align-items: center;
    border-bottom: 1px solid var(--border);
    transition: background 0.15s ease;
}

.requests-page .table-row:last-child {
    border-bottom: none;
}

.requests-page .table-row:hover {
    background: var(--bg-secondary);
}

.requests-page .table-contact {
    display: flex;
    align-items: center;
    gap: 12px;
}

.requests-page .table-contact-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.requests-page .table-contact-icon svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
}

.requests-page .table-contact-icon.club {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(99, 102, 241, 0.05));
    color: #818cf8;
}

.requests-page .table-contact-icon.agent {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.15), rgba(251, 191, 36, 0.05));
    color: #fbbf24;
}

.requests-page .table-contact-icon.coach {
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.15), rgba(52, 211, 153, 0.05));
    color: #34d399;
}

.requests-page .table-contact-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.requests-page .table-contact-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
}

.requests-page .table-contact-org {
    font-size: 11px;
    color: var(--text-tertiary);
}

.requests-page .table-position {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-primary);
}

.requests-page .table-criteria {
    font-size: 12px;
    color: var(--text-secondary);
}

.requests-page .table-budget {
    font-size: 12px;
    font-weight: 600;
    color: #34d399;
}

.requests-page .table-actions {
    display: flex;
    gap: 4px;
    justify-content: flex-end;
}

/* ==============================================
   Empty State (scoped)
   ============================================== */
.requests-page .empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    text-align: center;
}

.requests-page .empty-state-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.requests-page .empty-state-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--text-tertiary);
    fill: none;
    stroke-width: 1.5;
}

.requests-page .empty-state h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 6px;
}

.requests-page .empty-state p {
    font-size: 13px;
    color: var(--text-tertiary);
    margin: 0 0 24px;
}

/* ==============================================
   Loading State (scoped)
   ============================================== */
.requests-page .loading-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    color: var(--text-tertiary);
}

.requests-page .loading-state .spinner {
    width: 28px;
    height: 28px;
    border: 2px solid var(--border);
    border-top-color: var(--text-tertiary);
    border-radius: 50%;
    animation: requests-spin 0.7s linear infinite;
    margin-bottom: 16px;
}

@keyframes requests-spin {
    to { transform: rotate(360deg); }
}

.requests-page .loading-state p {
    font-size: 13px;
    margin: 0;
}

/* ==============================================
   Form Modal Styles (scoped with .request-form)
   ============================================== */
.request-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.request-form .form-section {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.request-form .form-section-title {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin: 0;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

.request-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.request-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.request-form .form-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
}

.request-form .form-label.required::after {
    content: ' *';
    color: #f87171;
}

.request-form .form-input,
.request-form .form-select,
.request-form .form-textarea {
    padding: 10px 14px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 13px;
    color: var(--text-primary);
    transition: all 0.2s ease;
}

.request-form .form-input:focus,
.request-form .form-select:focus,
.request-form .form-textarea:focus {
    outline: none;
    border-color: var(--text-tertiary);
    background: var(--bg-card);
}

.request-form .form-textarea {
    resize: vertical;
    min-height: 80px;
}

.request-form .priority-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.request-form .priority-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 14px 12px;
    background: var(--bg-secondary);
    border: 2px solid transparent;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 11px;
    font-weight: 500;
    color: var(--text-tertiary);
}

.request-form .priority-option input {
    display: none;
}

.request-form .priority-option:hover {
    border-color: var(--border);
}

.request-form .priority-option.active {
    border-color: var(--text-tertiary);
    color: var(--text-primary);
}

.request-form .priority-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.request-form .priority-option.low .priority-dot { background: #94a3b8; }
.request-form .priority-option.medium .priority-dot { background: #818cf8; }
.request-form .priority-option.high .priority-dot { background: #fbbf24; }
.request-form .priority-option.urgent .priority-dot { background: #f87171; }

/* ==============================================
   Matching Modal (scoped)
   ============================================== */
.matching-header {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 16px;
}

.matching-tag {
    padding: 6px 12px;
    background: var(--bg-secondary);
    border-radius: 8px;
    font-size: 11px;
    font-weight: 500;
    color: var(--text-secondary);
}

.matching-results {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.matching-count {
    font-size: 12px;
    color: var(--text-tertiary);
    margin-bottom: 8px;
}

.matching-player {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    background: var(--bg-secondary);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.15s ease;
}

.matching-player:hover {
    background: var(--bg-input);
    transform: translateX(4px);
}

.matching-player-photo {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--bg-card);
}

.matching-player-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.matching-player-info {
    flex: 1;
    min-width: 0;
}

.matching-player-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.matching-player-club {
    font-size: 11px;
    color: var(--text-tertiary);
}

.matching-player-tags {
    display: flex;
    gap: 6px;
    margin-top: 6px;
    flex-wrap: wrap;
}

.matching-player-tags .player-tag {
    padding: 3px 8px;
    background: var(--bg-card);
    border-radius: 6px;
    font-size: 10px;
    font-weight: 500;
    color: var(--text-secondary);
}

.matching-player-stats {
    display: flex;
    gap: 16px;
    text-align: center;
}

.matching-player-stats .player-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.matching-player-stats .player-stat-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

.matching-player-stats .player-stat-label {
    font-size: 9px;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.matching-player-arrow {
    color: var(--text-tertiary);
    opacity: 0;
    transition: opacity 0.15s ease;
}

.matching-player:hover .matching-player-arrow {
    opacity: 1;
}

.matching-player-arrow svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

/* ==============================================
   Detail Panel - New Design
   ============================================== */
.request-detail-panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Hero Header */
.detail-hero {
    position: relative;
    margin: -24px -24px 0;
    padding: 28px 24px;
    border-radius: 0 0 20px 20px;
    overflow: hidden;
}

.detail-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.08));
    z-index: 0;
}

.detail-hero-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.detail-hero-content {
    position: relative;
    z-index: 1;
}

.detail-type-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.detail-type-badge .type-icon {
    font-size: 16px;
}

.detail-contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.detail-contact-card .contact-avatar {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.detail-contact-card .contact-avatar svg {
    width: 28px;
    height: 28px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
}

.detail-contact-card .contact-avatar.club {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.25), rgba(99, 102, 241, 0.1));
    color: #818cf8;
}

.detail-contact-card .contact-avatar.agent {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.25), rgba(251, 191, 36, 0.1));
    color: #fbbf24;
}

.detail-contact-card .contact-avatar.coach {
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.25), rgba(52, 211, 153, 0.1));
    color: #34d399;
}

.detail-contact-card .contact-avatar.other {
    background: linear-gradient(135deg, rgba(148, 163, 184, 0.25), rgba(148, 163, 184, 0.1));
    color: #94a3b8;
}

.detail-contact-card .contact-details h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 4px;
    letter-spacing: -0.3px;
}

.detail-contact-card .contact-details p {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 0 0 6px;
}

.detail-contact-card .contact-country {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-tertiary);
}

.detail-contact-card .contact-country svg {
    width: 12px;
    height: 12px;
}

.detail-badges-row {
    display: flex;
    gap: 10px;
}

.detail-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.detail-badge .badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.detail-badge.priority-low {
    background: rgba(148, 163, 184, 0.15);
    color: #94a3b8;
}
.detail-badge.priority-low .badge-dot { background: #94a3b8; }

.detail-badge.priority-medium {
    background: rgba(99, 102, 241, 0.15);
    color: #818cf8;
}
.detail-badge.priority-medium .badge-dot { background: #818cf8; }

.detail-badge.priority-high {
    background: rgba(251, 191, 36, 0.15);
    color: #fbbf24;
}
.detail-badge.priority-high .badge-dot { background: #fbbf24; }

.detail-badge.priority-urgent {
    background: rgba(248, 113, 113, 0.15);
    color: #f87171;
}
.detail-badge.priority-urgent .badge-dot { background: #f87171; }

.detail-badge.status-open {
    background: rgba(251, 191, 36, 0.15);
    color: #fbbf24;
}

.detail-badge.status-in_progress {
    background: rgba(99, 102, 241, 0.15);
    color: #818cf8;
}

.detail-badge.status-fulfilled {
    background: rgba(52, 211, 153, 0.15);
    color: #34d399;
}

.detail-badge.status-cancelled {
    background: rgba(148, 163, 184, 0.15);
    color: #94a3b8;
}

/* Section Cards */
.detail-section-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 20px;
}

.section-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.section-card-header .section-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.section-card-header .section-icon svg {
    width: 18px;
    height: 18px;
    stroke: white;
    fill: none;
    stroke-width: 2;
}

.section-card-header h3 {
    flex: 1;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.section-card-header .currency-tag {
    padding: 4px 10px;
    background: rgba(52, 211, 153, 0.15);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    color: #34d399;
}

/* Profile Grid */
.profile-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.profile-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    transition: background 0.2s ease;
}

.profile-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.profile-item-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.profile-item-icon svg {
    width: 16px;
    height: 16px;
    stroke: var(--text-tertiary);
    fill: none;
    stroke-width: 2;
}

.profile-item-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.profile-item-content .label {
    font-size: 10px;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.profile-item-content .value {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
}

/* Budget Grid */
.budget-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.budget-item {
    flex: 1;
    min-width: 120px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    text-align: center;
}

.budget-item.highlight {
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.12), rgba(52, 211, 153, 0.05));
    border: 1px solid rgba(52, 211, 153, 0.2);
}

.budget-label {
    display: block;
    font-size: 10px;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-bottom: 6px;
}

.budget-value {
    font-size: 18px;
    font-weight: 700;
    color: #34d399;
}

.budget-item.highlight .budget-value {
    font-size: 22px;
}

.budget-empty {
    flex: 1;
    padding: 20px;
    text-align: center;
    font-size: 13px;
    color: var(--text-tertiary);
    font-style: italic;
}

/* Notes Card */
.notes-content {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.7;
    padding: 14px;
    background: rgba(139, 92, 246, 0.06);
    border-radius: 10px;
    border-left: 3px solid rgba(139, 92, 246, 0.4);
}

/* Actions Bar */
.detail-actions-bar {
    display: flex;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.btn-action-edit,
.btn-action-delete {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-action-edit {
    flex: 1;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border: none;
    color: white;
}

.btn-action-edit:hover {
    background: linear-gradient(135deg, #818cf8, #a78bfa);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.btn-action-delete {
    background: transparent;
    border: 1px solid rgba(248, 113, 113, 0.3);
    color: #f87171;
}

.btn-action-delete:hover {
    background: rgba(248, 113, 113, 0.1);
    border-color: rgba(248, 113, 113, 0.5);
}

.btn-action-edit svg,
.btn-action-delete svg {
    width: 16px;
    height: 16px;
}

/* Shortlist Card adjustments */
.shortlist-card .section-card-header {
    margin-bottom: 16px;
}

.shortlist-card .section-card-header .btn-add-shortlist {
    margin-left: auto;
}

/* ==============================================
   Responsive
   ============================================== */
@media (max-width: 1200px) {
    .requests-page .requests-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==============================================
   Shortlist Styles
   ============================================== */

/* Shortlist Section Header */
.shortlist-section .shortlist-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.shortlist-section .shortlist-header h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.shortlist-section .shortlist-header h3 svg {
    width: 18px;
    height: 18px;
    stroke: #818cf8;
}

.btn-add-shortlist {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border: none;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-add-shortlist:hover {
    background: linear-gradient(135deg, #818cf8, #a78bfa);
    transform: translateY(-1px);
}

.btn-add-shortlist svg {
    width: 14px;
    height: 14px;
}

/* Shortlist Empty State */
.shortlist-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    text-align: center;
}

.shortlist-empty svg {
    width: 48px;
    height: 48px;
    stroke: var(--text-tertiary);
    margin-bottom: 16px;
    opacity: 0.5;
}

.shortlist-empty p {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    margin: 0 0 4px;
}

.shortlist-empty span {
    font-size: 12px;
    color: var(--text-tertiary);
}

/* Shortlist Stats */
.shortlist-stats {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.shortlist-count {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
}

.shortlist-status-summary {
    display: flex;
    gap: 12px;
}

.shortlist-status-summary .status-dot {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 500;
    color: var(--text-secondary);
}

.shortlist-status-summary .status-dot::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.shortlist-status-summary .status-dot.green::before {
    background: #34d399;
}

.shortlist-status-summary .status-dot.blue::before {
    background: #60a5fa;
}

/* Shortlist Players List */
.shortlist-players {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.shortlist-player {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    transition: all 0.2s ease;
}

.shortlist-player:hover {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border-color: rgba(255, 255, 255, 0.1);
}

.shortlist-player-rank {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.shortlist-player-photo {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--bg-secondary);
}

.shortlist-player-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shortlist-player-info {
    flex: 1;
    min-width: 0;
}

.shortlist-player-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.shortlist-player-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 11px;
    color: var(--text-tertiary);
}

.shortlist-player-meta span {
    display: flex;
    align-items: center;
}

.shortlist-player-meta span:not(:last-child)::after {
    content: '•';
    margin-left: 8px;
    opacity: 0.5;
}

.shortlist-player-notes {
    margin-top: 6px;
    padding: 8px 10px;
    background: rgba(99, 102, 241, 0.08);
    border-radius: 6px;
    font-size: 11px;
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.4;
}

.shortlist-player-value {
    font-size: 13px;
    font-weight: 600;
    color: #34d399;
    min-width: 50px;
    text-align: right;
}

.shortlist-player-status {
    min-width: 100px;
}

.status-select {
    width: 100%;
    padding: 6px 10px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 500;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s ease;
}

.status-select:hover {
    border-color: var(--text-tertiary);
}

.status-select.purple {
    border-color: rgba(139, 92, 246, 0.3);
    background: rgba(139, 92, 246, 0.1);
}

.status-select.green {
    border-color: rgba(52, 211, 153, 0.3);
    background: rgba(52, 211, 153, 0.1);
}

.status-select.red {
    border-color: rgba(248, 113, 113, 0.3);
    background: rgba(248, 113, 113, 0.1);
}

.status-select.blue {
    border-color: rgba(96, 165, 250, 0.3);
    background: rgba(96, 165, 250, 0.1);
}

.shortlist-player-actions {
    display: flex;
    gap: 4px;
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--text-tertiary);
    cursor: pointer;
    transition: all 0.15s ease;
}

.btn-icon:hover {
    background: var(--bg-secondary);
    border-color: var(--text-tertiary);
    color: var(--text-primary);
}

.btn-icon.danger:hover {
    background: rgba(248, 113, 113, 0.1);
    border-color: rgba(248, 113, 113, 0.3);
    color: #f87171;
}

.btn-icon svg {
    width: 14px;
    height: 14px;
}

/* Add to Shortlist Modal */
.add-shortlist-modal {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.shortlist-search {
    position: relative;
}

.shortlist-search .search-input-wrapper {
    position: relative;
}

.shortlist-search .search-input-wrapper svg {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    stroke: var(--text-tertiary);
    fill: none;
    stroke-width: 2;
}

.shortlist-search input {
    width: 100%;
    padding: 12px 14px 12px 42px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 13px;
    color: var(--text-primary);
    transition: all 0.2s ease;
}

.shortlist-search input:focus {
    outline: none;
    border-color: rgba(99, 102, 241, 0.5);
    background: var(--bg-card);
}

.shortlist-tabs {
    display: flex;
    gap: 4px;
    padding: 4px;
    background: var(--bg-secondary);
    border-radius: 10px;
}

.shortlist-tab {
    flex: 1;
    padding: 10px 16px;
    background: transparent;
    border: none;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-tertiary);
    cursor: pointer;
    transition: all 0.15s ease;
}

.shortlist-tab:hover {
    color: var(--text-secondary);
}

.shortlist-tab.active {
    background: var(--bg-card);
    color: var(--text-primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.shortlist-empty-search {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    text-align: center;
}

.shortlist-empty-search svg {
    width: 40px;
    height: 40px;
    stroke: var(--text-tertiary);
    margin-bottom: 12px;
    opacity: 0.5;
}

.shortlist-empty-search p {
    font-size: 13px;
    color: var(--text-tertiary);
}

.shortlist-results-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    max-height: 400px;
    overflow-y: auto;
}

.shortlist-result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.shortlist-result-item:hover {
    background: linear-gradient(145deg, rgba(99, 102, 241, 0.08), rgba(99, 102, 241, 0.03));
    border-color: rgba(99, 102, 241, 0.3);
}

.shortlist-result-item .result-photo {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--bg-card);
}

.shortlist-result-item .result-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shortlist-result-item .result-info {
    flex: 1;
    min-width: 0;
}

.shortlist-result-item .result-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.shortlist-result-item .result-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 11px;
    color: var(--text-tertiary);
}

.shortlist-result-item .result-meta span:not(:last-child)::after {
    content: '•';
    margin-left: 8px;
    opacity: 0.5;
}

.shortlist-result-item .result-add {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 8px;
    color: white;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.2s ease;
}

.shortlist-result-item:hover .result-add {
    opacity: 1;
    transform: scale(1);
}

.shortlist-result-item .result-add svg {
    width: 16px;
    height: 16px;
}

/* Shortlist Notes Form */
.shortlist-notes-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.shortlist-notes-form textarea {
    width: 100%;
    padding: 14px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 13px;
    color: var(--text-primary);
    resize: vertical;
    min-height: 120px;
    line-height: 1.5;
    transition: all 0.2s ease;
}

.shortlist-notes-form textarea:focus {
    outline: none;
    border-color: rgba(99, 102, 241, 0.5);
    background: var(--bg-card);
}

.shortlist-notes-form .form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

/* ==============================================
   SlidePanel Form Styles
   ============================================== */
.request-form-panel {
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding: 4px 0;
}

/* Section Header with gradient icon */
.request-form-panel .form-panel-section {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.request-form-panel .section-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.request-form-panel .section-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.request-form-panel .section-icon svg {
    width: 18px;
    height: 18px;
    stroke: white;
    fill: none;
    stroke-width: 2;
}

.request-form-panel .section-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.3px;
}

/* Type Selector Cards */
.request-form-panel .type-selector {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.request-form-panel .type-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 18px 12px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 2px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.request-form-panel .type-card:hover {
    background: linear-gradient(145deg, rgba(99, 102, 241, 0.08), rgba(99, 102, 241, 0.03));
    border-color: rgba(99, 102, 241, 0.25);
    transform: translateY(-2px);
}

.request-form-panel .type-card.active {
    background: linear-gradient(145deg, rgba(99, 102, 241, 0.15), rgba(99, 102, 241, 0.08));
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.2);
}

.request-form-panel .type-card input {
    display: none;
}

.request-form-panel .type-card .type-emoji,
.request-form-panel .type-card .type-icon {
    font-size: 28px;
    line-height: 1;
}

.request-form-panel .type-card .type-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.2s ease;
}

.request-form-panel .type-card.active .type-label {
    color: #818cf8;
}

/* Form Grid */
.request-form-panel .form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.request-form-panel .form-grid.three-cols {
    grid-template-columns: repeat(3, 1fr);
}

.request-form-panel .form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.request-form-panel .form-field.full-width {
    grid-column: 1 / -1;
}

.request-form-panel .field-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.request-form-panel .field-label.required::after {
    content: ' *';
    color: #f87171;
}

/* Styled Inputs */
.request-form-panel .form-select-styled,
.request-form-panel .form-input-styled {
    padding: 12px 16px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
    transition: all 0.2s ease;
}

.request-form-panel .form-select-styled:hover,
.request-form-panel .form-input-styled:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
}

.request-form-panel .form-select-styled:focus,
.request-form-panel .form-input-styled:focus {
    outline: none;
    border-color: rgba(99, 102, 241, 0.5);
    background: linear-gradient(145deg, rgba(99, 102, 241, 0.08), rgba(99, 102, 241, 0.03));
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.request-form-panel .form-select-styled option {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.request-form-panel .form-textarea-styled {
    padding: 14px 16px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    font-size: 13px;
    font-weight: 400;
    color: var(--text-primary);
    resize: vertical;
    min-height: 100px;
    line-height: 1.6;
    transition: all 0.2s ease;
}

.request-form-panel .form-textarea-styled:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
}

.request-form-panel .form-textarea-styled:focus {
    outline: none;
    border-color: rgba(99, 102, 241, 0.5);
    background: linear-gradient(145deg, rgba(99, 102, 241, 0.08), rgba(99, 102, 241, 0.03));
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

/* Priority Cards */
.request-form-panel .priority-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.request-form-panel .priority-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 16px 12px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 2px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.request-form-panel .priority-card input {
    display: none;
}

.request-form-panel .priority-card:hover {
    transform: translateY(-2px);
}

.request-form-panel .priority-indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    transition: transform 0.2s ease;
}

.request-form-panel .priority-card:hover .priority-indicator {
    transform: scale(1.15);
}

.request-form-panel .priority-card .priority-label,
.request-form-panel .priority-card > span:last-child {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.2s ease;
}

/* Priority Colors */
.request-form-panel .priority-card.low .priority-indicator { background: linear-gradient(135deg, #94a3b8, #64748b); }
.request-form-panel .priority-card.medium .priority-indicator { background: linear-gradient(135deg, #818cf8, #6366f1); }
.request-form-panel .priority-card.high .priority-indicator { background: linear-gradient(135deg, #fbbf24, #f59e0b); }
.request-form-panel .priority-card.urgent .priority-indicator { background: linear-gradient(135deg, #f87171, #ef4444); }

.request-form-panel .priority-card.low:hover {
    background: linear-gradient(145deg, rgba(148, 163, 184, 0.08), rgba(148, 163, 184, 0.03));
    border-color: rgba(148, 163, 184, 0.25);
}
.request-form-panel .priority-card.medium:hover {
    background: linear-gradient(145deg, rgba(99, 102, 241, 0.08), rgba(99, 102, 241, 0.03));
    border-color: rgba(99, 102, 241, 0.25);
}
.request-form-panel .priority-card.high:hover {
    background: linear-gradient(145deg, rgba(251, 191, 36, 0.08), rgba(251, 191, 36, 0.03));
    border-color: rgba(251, 191, 36, 0.25);
}
.request-form-panel .priority-card.urgent:hover {
    background: linear-gradient(145deg, rgba(248, 113, 113, 0.08), rgba(248, 113, 113, 0.03));
    border-color: rgba(248, 113, 113, 0.25);
}

.request-form-panel .priority-card.active.low {
    background: linear-gradient(145deg, rgba(148, 163, 184, 0.15), rgba(148, 163, 184, 0.08));
    border-color: rgba(148, 163, 184, 0.5);
    box-shadow: 0 4px 20px rgba(148, 163, 184, 0.2);
}
.request-form-panel .priority-card.active.low .priority-label,
.request-form-panel .priority-card.active.low > span:last-child { color: #94a3b8; }

.request-form-panel .priority-card.active.medium {
    background: linear-gradient(145deg, rgba(99, 102, 241, 0.15), rgba(99, 102, 241, 0.08));
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.2);
}
.request-form-panel .priority-card.active.medium .priority-label,
.request-form-panel .priority-card.active.medium > span:last-child { color: #818cf8; }

.request-form-panel .priority-card.active.high {
    background: linear-gradient(145deg, rgba(251, 191, 36, 0.15), rgba(251, 191, 36, 0.08));
    border-color: rgba(251, 191, 36, 0.5);
    box-shadow: 0 4px 20px rgba(251, 191, 36, 0.2);
}
.request-form-panel .priority-card.active.high .priority-label,
.request-form-panel .priority-card.active.high > span:last-child { color: #fbbf24; }

.request-form-panel .priority-card.active.urgent {
    background: linear-gradient(145deg, rgba(248, 113, 113, 0.15), rgba(248, 113, 113, 0.08));
    border-color: rgba(248, 113, 113, 0.5);
    box-shadow: 0 4px 20px rgba(248, 113, 113, 0.2);
}
.request-form-panel .priority-card.active.urgent .priority-label,
.request-form-panel .priority-card.active.urgent > span:last-child { color: #f87171; }

/* Form Buttons */
.request-form-panel .form-actions {
    display: flex;
    gap: 12px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.request-form-panel .btn-submit {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.request-form-panel .btn-submit:hover {
    background: linear-gradient(135deg, #818cf8, #a78bfa);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.35);
}

.request-form-panel .btn-submit svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.request-form-panel .btn-cancel {
    padding: 14px 24px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
}

.request-form-panel .btn-cancel:hover {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
}

/* ==============================================
   Colorful Page Background Accents
   ============================================== */
.requests-page {
    position: relative;
    background:
        radial-gradient(ellipse at 0% 0%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 0%, rgba(139, 92, 246, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(52, 211, 153, 0.04) 0%, transparent 50%);
}

.requests-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.03) 0%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

.requests-page > * {
    position: relative;
    z-index: 1;
}

/* Stat cards with subtle colored borders on hover */
.requests-page .stat-card:has(.stat-card-icon.total):hover {
    border-color: rgba(99, 102, 241, 0.3);
}

.requests-page .stat-card:has(.stat-card-icon.open):hover {
    border-color: rgba(251, 191, 36, 0.3);
}

.requests-page .stat-card:has(.stat-card-icon.fulfilled):hover {
    border-color: rgba(52, 211, 153, 0.3);
}

.requests-page .stat-card:has(.stat-card-icon.urgent):hover {
    border-color: rgba(248, 113, 113, 0.3);
}

/* Request cards with subtle glow on hover */
.requests-page .request-card:hover {
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(99, 102, 241, 0.1);
}

/* ==============================================
   Responsive - Form Panel
   ============================================== */
@media (max-width: 768px) {
    .request-form-panel .type-selector {
        grid-template-columns: repeat(2, 1fr);
    }

    .request-form-panel .form-grid {
        grid-template-columns: 1fr;
    }

    .request-form-panel .form-grid.three-cols {
        grid-template-columns: 1fr;
    }

    .request-form-panel .priority-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .request-form-panel .form-actions {
        flex-direction: column-reverse;
    }

    .request-form-panel .btn-cancel {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .requests-page {
        padding: 16px;
        padding-top: 70px; /* Space for mobile menu button */
        gap: 16px;
        overflow-x: hidden;
        max-width: 100vw;
    }

    /* Prevent horizontal scroll globally */
    body {
        overflow-x: hidden;
    }

    .requests-page .requests-header {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .requests-page .requests-header-left h1 {
        font-size: 22px;
    }

    .requests-page .requests-header-left p {
        font-size: 13px;
    }

    .requests-page .btn-new-request {
        width: 100%;
        justify-content: center;
        padding: 12px 16px;
    }

    .requests-page .requests-stats {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .requests-page .stat-card {
        padding: 12px 14px;
        gap: 10px;
    }

    .requests-page .stat-card-icon {
        width: 36px;
        height: 36px;
    }

    .requests-page .stat-card-icon svg {
        width: 18px;
        height: 18px;
    }

    .requests-page .stat-card-value {
        font-size: 20px;
    }

    .requests-page .stat-card-label {
        font-size: 11px;
    }

    .requests-page .requests-filters {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .requests-page .search-box {
        max-width: none;
        order: 1;
    }

    .requests-page .filter-tabs {
        overflow-x: auto;
        flex-shrink: 0;
        order: 2;
        padding-bottom: 4px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .requests-page .filter-tabs::-webkit-scrollbar {
        display: none;
    }

    .requests-page .filter-tab {
        flex-shrink: 0;
        padding: 8px 14px;
        font-size: 12px;
    }

    .requests-page .sort-selector {
        order: 3;
        width: 100%;
    }

    .requests-page .sort-selector select {
        width: 100%;
    }

    .requests-page .view-switcher {
        display: none; /* Hide on mobile - cards view only */
    }

    .requests-page .requests-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    /* Request Card Mobile */
    .requests-page .request-card {
        padding: 14px;
    }

    .requests-page .request-card-top {
        flex-wrap: wrap;
        gap: 8px;
    }

    .requests-page .request-badges {
        width: 100%;
        justify-content: flex-start;
    }

    .requests-page .request-card-actions {
        position: absolute;
        top: 14px;
        right: 14px;
    }

    .requests-page .request-card-main {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .requests-page .request-contact {
        width: 100%;
    }

    .requests-page .request-criteria {
        width: 100%;
    }

    .requests-page .profile-details {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .requests-page .profile-detail {
        padding: 8px 10px;
    }

    .requests-page .profile-detail-label {
        font-size: 10px;
    }

    .requests-page .profile-detail-value {
        font-size: 12px;
    }

    .request-form .priority-options {
        grid-template-columns: repeat(2, 1fr);
    }

    .requests-page .requests-table-header,
    .requests-page .table-row {
        display: none;
    }

    /* Empty state mobile */
    .requests-page .empty-state {
        padding: 40px 20px;
    }

    .requests-page .empty-state-icon {
        width: 60px;
        height: 60px;
    }

    .requests-page .empty-state h3 {
        font-size: 18px;
    }
}

/* ==============================================
   Light Mode Overrides
   ============================================== */
[data-theme="light"] .requests-page {
    background:
        radial-gradient(ellipse at 0% 0%, rgba(99, 102, 241, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 0%, rgba(139, 92, 246, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(16, 185, 129, 0.03) 0%, transparent 50%);
}

[data-theme="light"] .requests-page::before {
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.02) 0%, transparent 100%);
}

/* Stat Cards - Light */
[data-theme="light"] .requests-page .stat-card {
    background: #ffffff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
}

[data-theme="light"] .requests-page .stat-card:hover {
    box-shadow: var(--shadow-md);
}

[data-theme="light"] .requests-page .stat-card-icon.total {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.12), rgba(99, 102, 241, 0.05));
    color: #6366f1;
}

[data-theme="light"] .requests-page .stat-card-icon.open {
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.12), rgba(217, 119, 6, 0.05));
    color: #d97706;
}

[data-theme="light"] .requests-page .stat-card-icon.fulfilled {
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.12), rgba(5, 150, 105, 0.05));
    color: #059669;
}

[data-theme="light"] .requests-page .stat-card-icon.urgent {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.12), rgba(220, 38, 38, 0.05));
    color: #dc2626;
}

/* Filters - Light */
[data-theme="light"] .requests-page .search-box input {
    background: #ffffff;
    border: 1px solid var(--border);
}

[data-theme="light"] .requests-page .search-box input:focus {
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

[data-theme="light"] .requests-page .filter-tabs {
    background: #ffffff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

[data-theme="light"] .requests-page .filter-tab.active {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
}

[data-theme="light"] .requests-page .view-switcher {
    background: #ffffff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

[data-theme="light"] .requests-page .view-btn.active {
    background: var(--bg-primary);
    color: #6366f1;
}

/* Request Cards - Light */
[data-theme="light"] .requests-page .request-card {
    background: #ffffff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
}

[data-theme="light"] .requests-page .request-card:hover {
    border-color: var(--border-strong);
    box-shadow: var(--shadow-md), 0 0 0 1px rgba(99, 102, 241, 0.08);
}

[data-theme="light"] .requests-page .request-card-top {
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border);
}

[data-theme="light"] .requests-page .badge-priority {
    background: rgba(220, 38, 38, 0.1);
    color: #dc2626;
}

[data-theme="light"] .requests-page .badge-priority.medium {
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
}

[data-theme="light"] .requests-page .badge-priority.low {
    background: rgba(107, 114, 128, 0.1);
    color: #6b7280;
}

[data-theme="light"] .requests-page .badge-priority.high {
    background: rgba(217, 119, 6, 0.1);
    color: #d97706;
}

[data-theme="light"] .requests-page .badge-status {
    background: rgba(217, 119, 6, 0.1);
    color: #d97706;
}

[data-theme="light"] .requests-page .badge-status.in_progress {
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
}

[data-theme="light"] .requests-page .badge-status.fulfilled {
    background: rgba(5, 150, 105, 0.1);
    color: #059669;
}

[data-theme="light"] .requests-page .badge-status.cancelled {
    background: rgba(107, 114, 128, 0.1);
    color: #6b7280;
}

[data-theme="light"] .requests-page .request-profile {
    background: var(--bg-primary);
    border: 1px solid var(--border);
}

[data-theme="light"] .requests-page .position-tag {
    background: #ffffff;
    border: 1px solid var(--border);
}

[data-theme="light"] .requests-page .profile-item-icon {
    background: #ffffff;
    border: 1px solid var(--border);
}

[data-theme="light"] .requests-page .contact-icon.club {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(99, 102, 241, 0.05));
    color: #6366f1;
}

[data-theme="light"] .requests-page .contact-icon.agent {
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.15), rgba(217, 119, 6, 0.05));
    color: #d97706;
}

[data-theme="light"] .requests-page .contact-icon.coach {
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.15), rgba(5, 150, 105, 0.05));
    color: #059669;
}

[data-theme="light"] .requests-page .btn-action {
    background: #ffffff;
    border: 1px solid var(--border);
}

[data-theme="light"] .requests-page .btn-action:hover {
    background: var(--bg-primary);
    border-color: var(--border-strong);
}

[data-theme="light"] .requests-page .btn-find-match {
    background: #ffffff;
    border: 1px solid var(--border);
}

[data-theme="light"] .requests-page .btn-find-match:hover {
    background: var(--bg-primary);
    border-color: #6366f1;
    color: #6366f1;
}

/* Detail Panel - Light */
[data-theme="light"] .detail-hero-bg {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(139, 92, 246, 0.06), rgba(236, 72, 153, 0.04));
}

[data-theme="light"] .detail-hero-bg::before {
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
}

[data-theme="light"] .detail-type-badge {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
}

[data-theme="light"] .detail-contact-card .contact-avatar.club {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(99, 102, 241, 0.05));
    color: #6366f1;
}

[data-theme="light"] .detail-contact-card .contact-avatar.agent {
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.15), rgba(217, 119, 6, 0.05));
    color: #d97706;
}

[data-theme="light"] .detail-contact-card .contact-avatar.coach {
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.15), rgba(5, 150, 105, 0.05));
    color: #059669;
}

[data-theme="light"] .detail-badge.priority-low {
    background: rgba(107, 114, 128, 0.12);
    color: #6b7280;
}
[data-theme="light"] .detail-badge.priority-low .badge-dot { background: #6b7280; }

[data-theme="light"] .detail-badge.priority-medium {
    background: rgba(99, 102, 241, 0.12);
    color: #6366f1;
}
[data-theme="light"] .detail-badge.priority-medium .badge-dot { background: #6366f1; }

[data-theme="light"] .detail-badge.priority-high {
    background: rgba(217, 119, 6, 0.12);
    color: #d97706;
}
[data-theme="light"] .detail-badge.priority-high .badge-dot { background: #d97706; }

[data-theme="light"] .detail-badge.priority-urgent {
    background: rgba(220, 38, 38, 0.12);
    color: #dc2626;
}
[data-theme="light"] .detail-badge.priority-urgent .badge-dot { background: #dc2626; }

[data-theme="light"] .detail-badge.status-open {
    background: rgba(217, 119, 6, 0.12);
    color: #d97706;
}

[data-theme="light"] .detail-badge.status-in_progress {
    background: rgba(99, 102, 241, 0.12);
    color: #6366f1;
}

[data-theme="light"] .detail-badge.status-fulfilled {
    background: rgba(5, 150, 105, 0.12);
    color: #059669;
}

[data-theme="light"] .detail-section-card {
    background: #ffffff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

[data-theme="light"] .profile-item {
    background: var(--bg-primary);
    border: 1px solid var(--border);
}

[data-theme="light"] .profile-item:hover {
    background: var(--bg-card-hover);
}

[data-theme="light"] .profile-item-icon {
    background: #ffffff;
    border: 1px solid var(--border);
}

[data-theme="light"] .budget-item {
    background: var(--bg-primary);
    border: 1px solid var(--border);
}

[data-theme="light"] .budget-item.highlight {
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.08), rgba(5, 150, 105, 0.02));
    border: 1px solid rgba(5, 150, 105, 0.2);
}

[data-theme="light"] .budget-value {
    color: #059669;
}

[data-theme="light"] .notes-content {
    background: rgba(124, 58, 237, 0.05);
    border-left: 3px solid rgba(124, 58, 237, 0.4);
}

[data-theme="light"] .detail-actions-bar {
    border-top: 1px solid var(--border);
}

[data-theme="light"] .btn-action-delete {
    border: 1px solid rgba(220, 38, 38, 0.3);
    color: #dc2626;
}

[data-theme="light"] .btn-action-delete:hover {
    background: rgba(220, 38, 38, 0.08);
    border-color: rgba(220, 38, 38, 0.5);
}

/* Shortlist - Light */
[data-theme="light"] .shortlist-player {
    background: #ffffff;
    border: 1px solid var(--border);
}

[data-theme="light"] .shortlist-player:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-strong);
}

[data-theme="light"] .shortlist-player-notes {
    background: rgba(99, 102, 241, 0.06);
}

[data-theme="light"] .shortlist-player-value {
    color: #059669;
}

[data-theme="light"] .status-select {
    background: #ffffff;
    border: 1px solid var(--border);
}

[data-theme="light"] .status-select.purple {
    border-color: rgba(124, 58, 237, 0.4);
    background: rgba(124, 58, 237, 0.08);
}

[data-theme="light"] .status-select.green {
    border-color: rgba(5, 150, 105, 0.4);
    background: rgba(5, 150, 105, 0.08);
}

[data-theme="light"] .status-select.red {
    border-color: rgba(220, 38, 38, 0.4);
    background: rgba(220, 38, 38, 0.08);
}

[data-theme="light"] .status-select.blue {
    border-color: rgba(37, 99, 235, 0.4);
    background: rgba(37, 99, 235, 0.08);
}

[data-theme="light"] .btn-icon {
    background: #ffffff;
    border: 1px solid var(--border);
}

[data-theme="light"] .btn-icon:hover {
    background: var(--bg-primary);
    border-color: var(--border-strong);
}

[data-theme="light"] .btn-icon.danger:hover {
    background: rgba(220, 38, 38, 0.08);
    border-color: rgba(220, 38, 38, 0.3);
    color: #dc2626;
}

/* Add to Shortlist Modal - Light */
[data-theme="light"] .shortlist-search input {
    background: #ffffff;
    border: 1px solid var(--border);
}

[data-theme="light"] .shortlist-search input:focus {
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
    background: #ffffff;
}

[data-theme="light"] .shortlist-tabs {
    background: var(--bg-primary);
    border: 1px solid var(--border);
}

[data-theme="light"] .shortlist-tab.active {
    background: #ffffff;
    box-shadow: var(--shadow-sm);
}

[data-theme="light"] .shortlist-result-item {
    background: #ffffff;
    border: 1px solid var(--border);
}

[data-theme="light"] .shortlist-result-item:hover {
    background: linear-gradient(145deg, rgba(99, 102, 241, 0.04), rgba(99, 102, 241, 0.01));
    border-color: rgba(99, 102, 241, 0.3);
}

/* Form Panel - Light */
[data-theme="light"] .request-form-panel .type-card {
    background: #ffffff;
    border: 2px solid var(--border);
}

[data-theme="light"] .request-form-panel .type-card:hover {
    background: linear-gradient(145deg, rgba(99, 102, 241, 0.05), rgba(99, 102, 241, 0.02));
    border-color: rgba(99, 102, 241, 0.3);
}

[data-theme="light"] .request-form-panel .type-card.active {
    background: linear-gradient(145deg, rgba(99, 102, 241, 0.1), rgba(99, 102, 241, 0.05));
    border-color: #6366f1;
}

[data-theme="light"] .request-form-panel .type-card.active .type-label {
    color: #6366f1;
}

[data-theme="light"] .request-form-panel .form-select-styled,
[data-theme="light"] .request-form-panel .form-input-styled {
    background: #ffffff;
    border: 1px solid var(--border);
}

[data-theme="light"] .request-form-panel .form-select-styled:hover,
[data-theme="light"] .request-form-panel .form-input-styled:hover {
    border-color: var(--border-strong);
    background: #ffffff;
}

[data-theme="light"] .request-form-panel .form-select-styled:focus,
[data-theme="light"] .request-form-panel .form-input-styled:focus {
    border-color: #6366f1;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

[data-theme="light"] .request-form-panel .form-textarea-styled {
    background: #ffffff;
    border: 1px solid var(--border);
}

[data-theme="light"] .request-form-panel .form-textarea-styled:focus {
    border-color: #6366f1;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

[data-theme="light"] .request-form-panel .priority-card {
    background: #ffffff;
    border: 2px solid var(--border);
}

[data-theme="light"] .request-form-panel .priority-card.low:hover {
    background: rgba(107, 114, 128, 0.05);
    border-color: rgba(107, 114, 128, 0.3);
}

[data-theme="light"] .request-form-panel .priority-card.medium:hover {
    background: rgba(99, 102, 241, 0.05);
    border-color: rgba(99, 102, 241, 0.3);
}

[data-theme="light"] .request-form-panel .priority-card.high:hover {
    background: rgba(217, 119, 6, 0.05);
    border-color: rgba(217, 119, 6, 0.3);
}

[data-theme="light"] .request-form-panel .priority-card.urgent:hover {
    background: rgba(220, 38, 38, 0.05);
    border-color: rgba(220, 38, 38, 0.3);
}

[data-theme="light"] .request-form-panel .priority-card.active.low {
    background: rgba(107, 114, 128, 0.1);
    border-color: #6b7280;
}

[data-theme="light"] .request-form-panel .priority-card.active.medium {
    background: rgba(99, 102, 241, 0.1);
    border-color: #6366f1;
}

[data-theme="light"] .request-form-panel .priority-card.active.high {
    background: rgba(217, 119, 6, 0.1);
    border-color: #d97706;
}

[data-theme="light"] .request-form-panel .priority-card.active.urgent {
    background: rgba(220, 38, 38, 0.1);
    border-color: #dc2626;
}

[data-theme="light"] .request-form-panel .priority-card.active.low > span:last-child { color: #6b7280; }
[data-theme="light"] .request-form-panel .priority-card.active.medium > span:last-child { color: #6366f1; }
[data-theme="light"] .request-form-panel .priority-card.active.high > span:last-child { color: #d97706; }
[data-theme="light"] .request-form-panel .priority-card.active.urgent > span:last-child { color: #dc2626; }

[data-theme="light"] .request-form-panel .form-actions {
    border-top: 1px solid var(--border);
}

[data-theme="light"] .request-form-panel .btn-cancel {
    background: #ffffff;
    border: 1px solid var(--border);
}

[data-theme="light"] .request-form-panel .btn-cancel:hover {
    background: var(--bg-primary);
    border-color: var(--border-strong);
}

/* Empty & Loading States - Light */
[data-theme="light"] .requests-page .empty-state-icon {
    background: #ffffff;
    border: 1px solid var(--border);
}

[data-theme="light"] .shortlist-empty svg {
    stroke: var(--text-tertiary);
}

[data-theme="light"] .shortlist-notes-form textarea {
    background: #ffffff;
    border: 1px solid var(--border);
}

[data-theme="light"] .shortlist-notes-form textarea:focus {
    border-color: #6366f1;
    background: #ffffff;
}

/* ==============================================
   Autocomplete Styles
   ============================================== */
.autocomplete-wrapper {
    position: relative;
}

.autocomplete-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 100;
    max-height: 300px;
    overflow-y: auto;
    display: none;
}

.autocomplete-results.show {
    display: block;
}

.autocomplete-item {
    padding: 12px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--border-subtle);
    transition: background 0.15s ease;
}

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

.autocomplete-item:hover {
    background: var(--bg-tertiary);
}

.autocomplete-item .lead-type-badge {
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 4px;
    background: rgba(99, 102, 241, 0.15);
    color: #6366f1;
}

.autocomplete-item .lead-type-badge.club {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.autocomplete-item .lead-type-badge.agent {
    background: rgba(249, 115, 22, 0.15);
    color: #f97316;
}

.autocomplete-item .lead-name {
    font-weight: 500;
    color: var(--text-primary);
}

.autocomplete-item .lead-org {
    font-size: 12px;
    color: var(--text-secondary);
}

.autocomplete-item .lead-country {
    margin-left: auto;
    font-size: 11px;
    color: var(--text-tertiary);
}

.autocomplete-no-results {
    padding: 16px;
    text-align: center;
    color: var(--text-tertiary);
    font-size: 13px;
}

/* ==============================================
   Multi-Select Styles
   ============================================== */
.multi-select-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.multi-select-selected {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    min-height: 32px;
}

.multi-select-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: rgba(99, 102, 241, 0.15);
    color: #6366f1;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
}

.multi-select-tag .tag-remove {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
    opacity: 0.7;
    padding: 0;
    transition: opacity 0.15s;
}

.multi-select-tag .tag-remove:hover {
    opacity: 1;
}

/* Light theme */
[data-theme="light"] .autocomplete-results {
    background: #ffffff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .autocomplete-item:hover {
    background: #f3f4f6;
}

/* ==============================================
   Sort Selector Styles
   ============================================== */
.sort-selector {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sort-selector label {
    font-size: 13px;
    color: var(--text-secondary);
    white-space: nowrap;
}

.form-select-sm {
    padding: 6px 12px;
    font-size: 13px;
    border-radius: var(--radius-md);
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    color: var(--text-primary);
    cursor: pointer;
    min-width: 140px;
}

.form-select-sm:focus {
    outline: none;
    border-color: var(--accent);
}

[data-theme="light"] .form-select-sm {
    background: #ffffff;
}

/* Form hint styles */
.form-hint {
    font-size: 12px;
    color: var(--text-tertiary);
    margin-top: 8px;
    font-style: italic;
}
