/* ===========================================
   UCP (User Control Panel) Styles
   Los Santos After Dark - World of Darkness
   =========================================== */

/* ===== UCP Header ===== */
.ucp-header {
    background: linear-gradient(to bottom, var(--wod-black), var(--wod-void));
    padding: 120px 0 60px;
    text-align: center;
    border-bottom: 1px solid var(--wod-ash);
}

.ucp-header .mbr-section-title {
    margin-bottom: 1rem;
}

/* ===== Login Section ===== */
.ucp-login {
    background: var(--wod-void);
    padding: 60px 0;
    min-height: calc(100vh - 400px);
    display: flex;
    align-items: center;
}

.login-card {
    background: linear-gradient(145deg, var(--wod-shadow), var(--wod-black));
    border: 1px solid var(--wod-ash);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.login-header {
    background: linear-gradient(90deg, #6D28D9, #8B5CF6);
    padding: 30px;
    text-align: center;
}

.login-header h2 {
    color: var(--wod-pale);
    margin-bottom: 0.5rem;
}

.login-header p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.login-body {
    padding: 30px;
}

/* Discord Login Button */
.btn-discord {
    background: #5865F2 !important;
    border-color: #5865F2 !important;
    color: white !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 20px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-discord:hover {
    background: #4752c4 !important;
    box-shadow: 0 0 20px rgba(88, 101, 242, 0.5) !important;
    transform: translateY(-2px);
}

.btn-discord .socicon {
    font-size: 1.3rem;
}

/* Divider */
.divider {
    display: flex;
    align-items: center;
    margin: 25px 0;
    color: var(--h20-silver);
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--wod-ash);
}

.divider span {
    padding: 0 15px;
    font-size: 0.9rem;
}

/* Login Form */
.login-form .form-label {
    color: var(--wod-bone);
    margin-bottom: 0.5rem;
}

.login-form .form-control {
    background: var(--wod-black);
    border: 1px solid var(--wod-ash);
    color: var(--wod-pale);
    padding: 12px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.login-form .form-control:focus {
    border-color: #8B5CF6;
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.4);
    outline: none;
}

.login-form .form-control::placeholder {
    color: var(--h20-steel);
}

.login-footer {
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--wod-ash);
    color: var(--h20-silver);
}

.login-footer a {
    color: #8B5CF6;
}

/* Discord Info Section */
.discord-info {
    margin-top: 30px;
    padding: 20px;
    background: rgba(88, 101, 242, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(88, 101, 242, 0.2);
}

.discord-info p {
    color: var(--h20-silver);
    font-size: 0.9rem;
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.discord-info p:first-child {
    margin-top: 0;
}

.discord-info p:last-child {
    margin-bottom: 0;
}

.discord-info i {
    color: #5865F2;
    width: 18px;
    text-align: center;
}

/* ===== Dashboard Section ===== */
.ucp-dashboard {
    background: var(--wod-void);
    padding: 30px 0 60px;
    min-height: calc(100vh - 200px);
}

/* User Bar */
.user-bar {
    background: var(--wod-shadow);
    border: 1px solid var(--wod-ash);
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #8B5CF6;
}

.user-details {
    display: flex;
    flex-direction: column;
}

.user-name {
    color: var(--wod-pale);
    font-weight: 600;
    font-size: 1.1rem;
}

.user-role {
    color: var(--h20-silver);
    font-size: 0.9rem;
}

/* Staff Role Badges */
.staff-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 5px;
}

.staff-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Founder - Gold/Royal */
.staff-badge.founder {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3), rgba(255, 165, 0, 0.2));
    border: 1px solid rgba(255, 215, 0, 0.5);
    color: #FFD700;
}

/* Admin badges */
.staff-badge.admin-3 {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.3), rgba(192, 57, 43, 0.2));
    border: 1px solid rgba(231, 76, 60, 0.5);
    color: #e74c3c;
}

.staff-badge.admin-2 {
    background: linear-gradient(135deg, rgba(230, 126, 34, 0.3), rgba(211, 84, 0, 0.2));
    border: 1px solid rgba(230, 126, 34, 0.5);
    color: #e67e22;
}

.staff-badge.admin-1 {
    background: linear-gradient(135deg, rgba(241, 196, 15, 0.3), rgba(243, 156, 18, 0.2));
    border: 1px solid rgba(241, 196, 15, 0.5);
    color: #f1c40f;
}

/* Lead roles - Purple */
.staff-badge.lead-st,
.staff-badge.lead-staff,
.staff-badge.lead-admin {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(109, 40, 217, 0.2));
    border: 1px solid rgba(139, 92, 246, 0.5);
    color: #8B5CF6;
}

/* Head roles - Cyan/Teal */
.staff-badge.head-kindred,
.staff-badge.head-garou,
.staff-badge.head-mage,
.staff-badge.head-changeling,
.staff-badge.head-fera,
.staff-badge.head-hunter,
.staff-badge.head-mortal,
.staff-badge.head-admins {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.3), rgba(8, 145, 178, 0.2));
    border: 1px solid rgba(6, 182, 212, 0.5);
    color: #06B6D4;
}

/* Storyteller roles - Deep Purple */
.staff-badge.st-kindred,
.staff-badge.st-garou,
.staff-badge.st-mage,
.staff-badge.st-changeling,
.staff-badge.st-fera,
.staff-badge.st-hunter,
.staff-badge.st-mortal {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.3), rgba(126, 34, 206, 0.2));
    border: 1px solid rgba(147, 51, 234, 0.5);
    color: #9333EA;
}

/* Lore Diva roles - Rose/Pink */
.staff-badge.lore-diva-kindred,
.staff-badge.lore-diva-garou,
.staff-badge.lore-diva-mage,
.staff-badge.lore-diva-changeling,
.staff-badge.lore-diva-fera,
.staff-badge.lore-diva-hunter,
.staff-badge.lore-diva-mortal {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.3), rgba(219, 39, 119, 0.2));
    border: 1px solid rgba(236, 72, 153, 0.5);
    color: #EC4899;
}

/* ===== Sidebar ===== */
.ucp-sidebar {
    background: var(--wod-shadow);
    border: 1px solid var(--wod-ash);
    border-radius: 10px;
    overflow: hidden;
}

.ucp-nav {
    display: flex;
    flex-direction: column;
}

.ucp-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    color: var(--wod-bone);
    text-decoration: none;
    border-bottom: 1px solid var(--wod-ash);
    transition: all 0.3s ease;
}

.ucp-nav-item:hover {
    background: var(--wod-ash);
    color: #8B5CF6;
}

.ucp-nav-item.active {
    background: linear-gradient(90deg, rgba(109, 40, 217, 0.5), transparent);
    color: var(--wod-pale);
    border-left: 3px solid #8B5CF6;
}

.ucp-nav-item .mbr-iconfont {
    font-size: 1.2rem;
}

/* Quick Stats */
.quick-stats {
    padding: 20px;
    border-top: 1px solid var(--wod-ash);
}

.quick-stats h4 {
    color: var(--wod-pale);
    margin-bottom: 15px;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(45, 45, 45, 0.5);
}

.stat-label {
    color: var(--h20-silver);
}

.stat-value {
    color: #8B5CF6;
    font-weight: 600;
}

/* ===== UCP Panels ===== */
.ucp-panel {
    display: none;
    background: var(--wod-shadow);
    border: 1px solid var(--wod-ash);
    border-radius: 10px;
    padding: 25px;
}

.ucp-panel.active {
    display: block;
}

.panel-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 20px !important;
    padding-top: 15px !important;
    padding-bottom: 15px !important;
    border-bottom: 1px solid var(--wod-ash) !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 30px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.panel-title {
    font-family: 'Sorts Mill Goudy', serif !important;
    font-size: 1.8rem !important;
    font-weight: 400 !important;
    text-transform: uppercase !important;
    letter-spacing: 4px !important;
    margin: 0 !important;
    padding-left: 30px !important;
    text-shadow: 0 0 30px rgba(139, 92, 246, 0.5), 0 0 60px rgba(139, 92, 246, 0.3) !important;
}

/* ===== Character Cards ===== */
.character-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

/* Loading and Error States */
.loading-characters,
.character-error {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--h20-silver);
    background: var(--wod-black);
    border: 1px solid var(--wod-ash);
    border-radius: 12px;
}

.loading-characters i,
.character-error i {
    font-size: 2rem;
    margin-bottom: 15px;
    display: block;
}

.character-error i {
    color: #f59e0b;
}

.character-error p {
    margin-bottom: 20px;
}

.character-card {
    background: var(--wod-black);
    border: 1px solid var(--wod-ash);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.character-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Faction-specific borders */
.character-card.kindred {
    border-top: 3px solid var(--vtm-blood);
}

.character-card.kindred:hover {
    border-color: var(--vtm-blood);
    box-shadow: 0 0 20px var(--vtm-blood-glow);
}

.character-card.garou {
    border-top: 3px solid var(--wta-green);
}

.character-card.garou:hover {
    border-color: var(--wta-green);
    box-shadow: 0 0 20px rgba(47, 79, 47, 0.5);
}

.character-card.changeling {
    border-top: 3px solid var(--c20-purple);
}

.character-card.changeling:hover {
    border-color: var(--c20-purple);
    box-shadow: 0 0 20px rgba(74, 14, 78, 0.5);
}

.character-card.hunter {
    border-top: 3px solid var(--h20-conviction);
}

.character-card.mortal {
    border-top: 3px solid var(--h20-steel);
}

.character-portrait {
    position: relative;
    height: 150px;
    overflow: hidden;
}

.character-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.character-type {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: var(--wod-pale);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.character-info {
    padding: 20px;
}

.character-name {
    color: var(--wod-pale);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.character-clan {
    color: var(--h20-silver);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.character-stats {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: var(--wod-bone);
}

.character-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.character-actions .btn {
    font-size: 0.8rem;
    padding: 6px 12px;
}

/* Add Character Card */
.add-character {
    border: 2px dashed var(--wod-ash);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 250px;
    cursor: pointer;
}

.add-character:hover {
    border-color: var(--vtm-blood);
    background: rgba(139, 0, 0, 0.1);
}

.add-character-content {
    text-align: center;
    color: var(--h20-silver);
}

.add-character-content .mbr-iconfont {
    font-size: 3rem;
    margin-bottom: 10px;
}

/* ===== Character Sheet Styles ===== */
.character-select {
    max-width: 300px;
    background: var(--wod-black);
    border: 1px solid var(--wod-ash);
    color: var(--wod-pale);
}

.sheet-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Sheet Placeholder */
.sheet-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background: var(--wod-black);
    border: 2px dashed var(--wod-ash);
    border-radius: 12px;
    text-align: center;
    color: var(--wod-bone);
}

.sheet-placeholder i {
    font-size: 4rem;
    color: var(--wod-ash);
    margin-bottom: 20px;
}

.sheet-placeholder p {
    margin: 5px 0;
    font-size: 1.1rem;
}

.sheet-placeholder .hint {
    font-size: 0.9rem;
    color: var(--wod-ash);
    font-style: italic;
}

/* Loading state for characters */
.loading-characters {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    color: var(--wod-bone);
    font-size: 1.1rem;
}

.loading-characters i {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--vtm-blood);
}

/* No characters state */
.no-characters {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    color: var(--wod-bone);
    text-align: center;
    grid-column: 1 / -1;
}

.no-characters i {
    font-size: 3rem;
    color: var(--wod-ash);
    margin-bottom: 15px;
}

.no-characters p {
    margin: 5px 0;
}

.no-characters .hint {
    font-size: 0.9rem;
    color: var(--wod-ash);
    font-style: italic;
}

.sheet-section {
    background: var(--wod-black);
    border: 1px solid var(--wod-ash);
    border-radius: 8px;
    padding: 20px;
}

.section-title {
    color: var(--vtm-blood);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--wod-ash);
}

/* Attributes Grid */
.attributes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 768px) {
    .attributes-grid {
        grid-template-columns: 1fr;
    }
}

.attribute-category h5 {
    color: var(--c20-dream);
    margin-bottom: 15px;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.attribute {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    color: var(--wod-bone);
}

.attr-dots {
    color: var(--vtm-blood);
    letter-spacing: 2px;
}

/* Disciplines */
.disciplines-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
}

.discipline {
    display: flex;
    justify-content: space-between;
    padding: 10px 15px;
    background: var(--wod-shadow);
    border-radius: 6px;
}

.disc-name {
    color: var(--wod-bone);
}

.disc-dots {
    color: var(--c20-mystical);
    letter-spacing: 2px;
}

/* Vitals */
.vitals-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.vital {
    display: flex;
    align-items: center;
    gap: 20px;
}

.vital-name {
    color: var(--wod-bone);
    min-width: 120px;
}

.vital-dots {
    color: var(--vtm-blood);
    letter-spacing: 2px;
}

/* Blood Pool Dots */
.blood-pool {
    display: flex;
    gap: 5px;
}

.blood-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--vtm-blood);
    background: transparent;
}

.blood-dot.filled {
    background: var(--vtm-blood);
    box-shadow: 0 0 5px var(--vtm-blood-glow);
}

/* ===== Applications ===== */
.applications-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.application-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--wod-black);
    border: 1px solid var(--wod-ash);
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;
}

.application-card:hover {
    border-color: var(--vtm-blood);
}

.app-status {
    flex-shrink: 0;
}

.status-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-badge.pending {
    background: rgba(184, 134, 11, 0.2);
    color: var(--h20-conviction);
    border: 1px solid var(--h20-conviction);
}

.status-badge.approved {
    background: rgba(47, 79, 47, 0.2);
    color: #4CAF50;
    border: 1px solid #4CAF50;
}

.status-badge.denied {
    background: rgba(139, 0, 0, 0.2);
    color: var(--vtm-blood);
    border: 1px solid var(--vtm-blood);
}

.app-info {
    flex: 1;
}

.app-info h4 {
    color: var(--wod-pale);
    margin-bottom: 5px;
}

.app-info p {
    color: var(--h20-silver);
    margin: 0;
    font-size: 0.9rem;
}

.app-actions {
    display: flex;
    gap: 10px;
}

/* ===== Inventory ===== */
.inventory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 15px;
}

.inventory-item {
    background: var(--wod-black);
    border: 1px solid var(--wod-ash);
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.inventory-item:hover {
    border-color: var(--vtm-blood);
}

.inventory-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    margin-bottom: 10px;
    filter: grayscale(50%);
}

.item-name {
    display: block;
    color: var(--wod-bone);
    font-size: 0.85rem;
    margin-bottom: 5px;
}

.item-count {
    color: var(--h20-silver);
    font-size: 0.8rem;
}

/* ===== RP Logs ===== */
.log-filters {
    display: flex;
    gap: 15px;
}

.logs-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.log-entry {
    display: grid;
    grid-template-columns: 150px 180px 1fr;
    gap: 15px;
    padding: 15px;
    background: var(--wod-black);
    border: 1px solid var(--wod-ash);
    border-radius: 6px;
    align-items: center;
}

@media (max-width: 768px) {
    .log-entry {
        grid-template-columns: 1fr;
        gap: 5px;
    }
}

.log-date {
    color: var(--h20-silver);
    font-size: 0.85rem;
}

.log-character {
    color: var(--vtm-blood);
    font-weight: 600;
}

.log-event {
    color: var(--wod-bone);
}

/* ===== Settings ===== */
.settings-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.settings-section {
    background: var(--wod-black);
    border: 1px solid var(--wod-ash);
    border-radius: 8px;
    padding: 25px;
}

.settings-section h4 {
    color: var(--vtm-blood);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--wod-ash);
}

.settings-form .form-label {
    color: var(--wod-bone);
}

.settings-form .form-control {
    background: var(--wod-shadow);
    border: 1px solid var(--wod-ash);
    color: var(--wod-pale);
}

.settings-form .form-control:focus {
    border-color: var(--vtm-blood);
    box-shadow: 0 0 10px var(--vtm-blood-glow);
}

/* Checkboxes */
.form-check {
    padding: 10px 0;
}

.form-check-input {
    background-color: var(--wod-shadow);
    border-color: var(--wod-ash);
}

.form-check-input:checked {
    background-color: var(--vtm-blood);
    border-color: var(--vtm-blood);
}

.form-check-label {
    color: var(--wod-bone);
}

/* Linked Accounts */
.linked-account {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--wod-shadow);
    border-radius: 6px;
    margin-bottom: 10px;
}

.linked-account .socicon,
.linked-account .fa {
    font-size: 1.5rem;
    color: var(--h20-silver);
    width: 30px;
    text-align: center;
}

.linked-account span:nth-child(2) {
    flex: 1;
    color: var(--wod-bone);
}

.linked-status {
    font-size: 0.85rem;
    padding: 4px 10px;
    border-radius: 4px;
}

.linked-status.connected {
    background: rgba(47, 79, 47, 0.2);
    color: #4CAF50;
}

/* ===== Supporter Perks ===== */
.supporter-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.supporter-status {
    background: linear-gradient(145deg, var(--wod-shadow), var(--wod-black));
    border: 1px solid var(--wod-ash);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
}

.supporter-tier .tier-icon {
    font-size: 3rem;
    color: var(--wod-gold);
    display: block;
    margin-bottom: 15px;
}

.supporter-tier h4 {
    color: var(--wod-pale);
    margin-bottom: 10px;
}

.perks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.perk-tier {
    background: var(--wod-black);
    border: 1px solid var(--wod-ash);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
}

.perk-tier:hover {
    border-color: var(--wod-gold);
    transform: translateY(-3px);
}

.perk-tier h4 {
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--wod-ash);
}

.perk-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.perk-list li {
    color: var(--h20-silver);
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

.perk-list li::before {
    content: '☽';
    position: absolute;
    left: 0;
    color: var(--wod-gold);
    font-size: 0.8rem;
}

/* ===== Business & Home Requests ===== */
.requests-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.request-tabs {
    display: flex;
    gap: 10px;
    padding: 15px 0;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--wod-ash);
}

.request-tab {
    background: linear-gradient(135deg, rgba(109, 40, 217, 0.2) 0%, rgba(139, 92, 246, 0.1) 100%);
    border: 1px solid var(--wod-purple);
    color: var(--h20-silver);
    padding: 12px 25px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.request-tab:hover,
.request-tab.active {
    background: linear-gradient(135deg, var(--wod-purple) 0%, var(--wod-purple-dark) 100%);
    border-color: var(--wod-purple-light);
    color: var(--wod-pale);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.4);
}

.requests-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.request-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(20, 20, 20, 0.95) 100%);
    border: 1px solid var(--wod-ash);
    border-radius: 10px;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.request-card:hover {
    border-color: var(--wod-purple);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.15);
}

.request-card.pending {
    border-left: 4px solid #FFA500;
}

.request-card.approved {
    border-left: 4px solid #4CAF50;
}

.request-card.denied {
    border-left: 4px solid #E53935;
}

.request-info {
    flex: 1;
}

.request-info h4 {
    color: var(--wod-pale);
    margin-bottom: 8px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.request-info p {
    color: var(--h20-silver);
    margin: 0 0 5px 0;
    font-size: 0.9rem;
}

.request-details {
    color: var(--wod-purple-light) !important;
    font-style: italic;
}

.request-status {
    min-width: 120px;
}

.status-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.pending {
    background: rgba(255, 165, 0, 0.2);
    color: #FFA500;
    border: 1px solid rgba(255, 165, 0, 0.3);
}

.status-badge.approved {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.status-badge.denied {
    background: rgba(229, 57, 53, 0.2);
    color: #E53935;
    border: 1px solid rgba(229, 57, 53, 0.3);
}

.request-actions {
    display: flex;
    gap: 10px;
}

/* ===== Script Suggestions ===== */
.suggestions-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.suggestions-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.suggestion-card {
    background: var(--wod-black);
    border: 1px solid var(--wod-ash);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    gap: 20px;
    transition: all 0.3s ease;
}

.suggestion-card:hover {
    border-color: var(--wod-gold);
}

.suggestion-votes {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    min-width: 50px;
}

.vote-btn {
    background: transparent;
    border: none;
    color: var(--h20-silver);
    cursor: pointer;
    font-size: 1.2rem;
    padding: 5px;
    transition: all 0.2s ease;
}

.vote-btn:hover {
    color: var(--wod-gold);
}

.vote-count {
    color: var(--wod-pale);
    font-weight: bold;
    font-size: 1.1rem;
}

.suggestion-info {
    flex: 1;
}

.suggestion-info h4 {
    color: var(--wod-pale);
    margin-bottom: 5px;
}

.suggestion-category {
    color: var(--wod-gold);
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.suggestion-desc {
    color: var(--h20-silver);
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.suggestion-meta {
    display: flex;
    gap: 20px;
    font-size: 0.85rem;
    color: var(--h20-silver);
    opacity: 0.8;
}

.status-badge.review {
    background: rgba(255, 165, 0, 0.2);
    color: #FFA500;
}

.status-badge.planned {
    background: rgba(100, 149, 237, 0.2);
    color: #6495ED;
}

.status-badge.implemented {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
    .ucp-sidebar {
        margin-bottom: 30px;
    }
    
    .ucp-nav {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .ucp-nav-item {
        flex: 1;
        min-width: 100px;
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 5px;
        font-size: 0.85rem;
    }
    
    .quick-stats {
        display: none;
    }
}

@media (max-width: 576px) {
    .user-bar {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .panel-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .character-grid {
        grid-template-columns: 1fr;
    }
    
    .suggestion-card {
        flex-direction: column;
    }
    
    .suggestion-votes {
        flex-direction: row;
    }
    
    .request-card {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ===== Purple/Silver Theme Overrides ===== */
.btn-silver {
    background: linear-gradient(135deg, #C0C0C0, #A0A0A0) !important;
    border: 1px solid #D0D0D0 !important;
    color: #1a1a1a !important;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-silver:hover {
    background: linear-gradient(135deg, #E0E0E0, #C0C0C0) !important;
    box-shadow: 0 0 15px rgba(192, 192, 192, 0.4) !important;
    transform: translateY(-2px);
    color: #000 !important;
}

.ucp-dashboard .btn-danger,
.ucp-login .btn-danger,
button.btn-danger,
.btn.btn-danger {
    background: linear-gradient(135deg, #C0C0C0, #A0A0A0) !important;
    border: 1px solid #D0D0D0 !important;
    color: #1a1a1a !important;
}

.ucp-dashboard .btn-danger:hover,
.ucp-login .btn-danger:hover,
button.btn-danger:hover,
.btn.btn-danger:hover {
    background: linear-gradient(135deg, #E0E0E0, #C0C0C0) !important;
    box-shadow: 0 0 15px rgba(192, 192, 192, 0.4) !important;
    color: #000 !important;
}

.btn-primary {
    background: linear-gradient(135deg, #8B5CF6, #6D28D9) !important;
    border: 1px solid #8B5CF6 !important;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #A78BFA, #8B5CF6) !important;
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.4) !important;
}

/* Character card without portrait */
.character-card .character-info {
    padding: 20px;
}

.character-card .character-type-badge {
    display: inline-block;
    background: rgba(139, 92, 246, 0.2);
    border: 1px solid #8B5CF6;
    color: #A78BFA;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

/* Purple accents for various elements */
.character-card.kindred {
    border-top: 3px solid #8B5CF6;
}

.character-card.kindred:hover {
    border-color: #8B5CF6;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

.character-card.garou {
    border-top: 3px solid #8B5CF6;
}

.character-card.garou:hover {
    border-color: #8B5CF6;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

.character-card.changeling {
    border-top: 3px solid #8B5CF6;
}

.character-card.changeling:hover {
    border-color: #8B5CF6;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

.character-card.mortal {
    border-top: 3px solid #C0C0C0;
}

.character-card.mortal:hover {
    border-color: #C0C0C0;
    box-shadow: 0 0 20px rgba(192, 192, 192, 0.3);
}

.character-card.hunter {
    border-top: 3px solid #C0C0C0;
}

/* ===========================================
   SETTINGS PANEL - Gothic Redesign
   =========================================== */

.settings-panel-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 25px;
}

.settings-card {
    background: linear-gradient(180deg, rgba(15, 15, 15, 0.95) 0%, rgba(10, 10, 10, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 3px solid #8B5CF6;
    overflow: hidden;
}

.settings-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 25px;
    background: rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.settings-card-header i {
    color: #8B5CF6;
    font-size: 1.1rem;
    opacity: 0.8;
}

.settings-card-header h4 {
    margin: 0;
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #c0c0c0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.settings-card-header.supporter-gradient {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-left: 3px solid #d4af37;
}

.settings-card-header.supporter-gradient i {
    color: #d4af37;
}

.perk-badge {
    margin-left: auto;
    padding: 4px 12px;
    font-size: 0.7rem;
    font-family: 'Cinzel', serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
    background: rgba(102, 102, 102, 0.3);
    border: 1px solid #666;
    color: #888;
}

.perk-badge.active {
    background: rgba(212, 175, 55, 0.2);
    border-color: #d4af37;
    color: #d4af37;
}

.settings-card-body {
    padding: 25px;
}

/* Account Overview */
.account-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.account-info-item {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px 20px;
    border-left: 2px solid #8B5CF6;
}

.account-info-item label {
    display: block;
    color: #666;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-family: 'Cinzel', serif;
}

.account-info-item .info-value {
    color: #e0e0e0;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.account-info-item .info-value code {
    background: rgba(139, 92, 246, 0.1);
    padding: 4px 10px;
    border-radius: 3px;
    font-size: 0.85rem;
    color: #a78bfa;
}

.discord-linked .socicon {
    color: #5865F2;
}

.linked-badge {
    background: rgba(46, 204, 113, 0.2);
    color: #2ecc71;
    padding: 3px 10px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(46, 204, 113, 0.3);
}

.status-indicator {
    padding: 4px 12px;
    font-size: 0.85rem;
}

.status-indicator.not-supporter {
    color: #888;
}

.status-indicator.is-supporter {
    color: #d4af37;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

/* Supporter Perks Section */
.not-supporter-message {
    text-align: center;
    padding: 30px 20px;
}

.not-supporter-message p {
    color: #888;
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn-supporter-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(139, 92, 246, 0.15) 100%);
    border: 1px solid #d4af37;
    color: #d4af37;
    font-family: 'Cinzel', serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-supporter-cta:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3) 0%, rgba(139, 92, 246, 0.2) 100%);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    color: #d4af37;
    text-decoration: none;
}

.supporter-tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.perk-status-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-left: 2px solid #d4af37;
    transition: all 0.2s ease;
}

.perk-status-item:hover {
    background: rgba(0, 0, 0, 0.5);
}

.perk-icon {
    font-size: 1.5rem;
}

.perk-info {
    flex: 1;
}

.perk-name {
    display: block;
    color: #e0e0e0;
    font-size: 0.9rem;
    margin-bottom: 3px;
}

.perk-usage {
    color: #888;
    font-size: 0.8rem;
}

.perk-action-btn {
    padding: 6px 15px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #d4af37;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.perk-action-btn:hover {
    background: rgba(212, 175, 55, 0.2);
    color: #d4af37;
    text-decoration: none;
}

.perk-active {
    color: #2ecc71;
    font-size: 0.8rem;
}

/* Notification Options */
.notification-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.toggle-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: background 0.2s ease;
}

.toggle-option:hover {
    background: rgba(0, 0, 0, 0.5);
}

.toggle-label {
    flex: 1;
}

.toggle-label strong {
    display: block;
    color: #e0e0e0;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.toggle-label small {
    color: #888;
    font-size: 0.8rem;
}

.toggle-option input[type="checkbox"] {
    display: none;
}

.toggle-switch {
    width: 50px;
    height: 26px;
    background: rgba(100, 100, 100, 0.3);
    border-radius: 13px;
    position: relative;
    transition: background 0.3s ease;
}

.toggle-switch::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: #666;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.toggle-option input:checked + .toggle-switch {
    background: rgba(139, 92, 246, 0.4);
}

.toggle-option input:checked + .toggle-switch::after {
    left: 27px;
    background: #8B5CF6;
}

/* Quick Links */
.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.quick-link-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 25px 15px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #c0c0c0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.quick-link-item:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.3);
    color: #8B5CF6;
    text-decoration: none;
}

.quick-link-item i {
    font-size: 1.5rem;
    opacity: 0.7;
}

.quick-link-item span {
    font-size: 0.85rem;
    text-align: center;
}

.quick-link-item.supporter-link {
    border-color: rgba(212, 175, 55, 0.2);
}

.quick-link-item.supporter-link:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.4);
    color: #d4af37;
}

/* ===========================================
   BUSINESS REQUESTS PANEL - Ticket Integration
   =========================================== */

.requests-panel-content {
    padding: 25px;
}

.requests-info-banner {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(88, 101, 242, 0.05) 100%);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-left: 3px solid #8B5CF6;
    margin-bottom: 30px;
}

.requests-info-banner .info-icon {
    color: #8B5CF6;
    font-size: 1.3rem;
    margin-top: 2px;
}

.requests-info-banner .info-text p {
    margin: 0;
    color: #c0c0c0;
    line-height: 1.6;
}

.requests-info-banner .info-text strong {
    color: #8B5CF6;
}

.request-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 35px;
}

.request-type-card {
    background: linear-gradient(180deg, rgba(15, 15, 15, 0.95) 0%, rgba(10, 10, 10, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.request-type-card:hover {
    border-color: rgba(139, 92, 246, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.request-type-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.request-type-card h4 {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    color: #c0c0c0;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.request-type-card p {
    color: #888;
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.btn-request {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.4);
    color: #a78bfa;
    font-family: 'Cinzel', serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-request:hover {
    background: rgba(139, 92, 246, 0.2);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.3);
    color: #a78bfa;
    text-decoration: none;
}

.active-requests-section {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px;
}

.section-subtitle {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    color: #8B5CF6;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

.section-subtitle i {
    opacity: 0.7;
}

.active-requests-list {
    min-height: 100px;
}

.loading-placeholder {
    text-align: center;
    padding: 30px;
    color: #888;
}

.loading-placeholder i {
    margin-right: 10px;
    color: #8B5CF6;
}

.request-ticket-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.3);
    border-left: 3px solid #8B5CF6;
    margin-bottom: 10px;
    transition: background 0.2s ease;
}

.request-ticket-item:hover {
    background: rgba(0, 0, 0, 0.5);
}

.request-ticket-info h5 {
    color: #e0e0e0;
    font-size: 0.95rem;
    margin: 0 0 5px 0;
}

.request-ticket-info p {
    color: #888;
    font-size: 0.8rem;
    margin: 0;
}

.request-ticket-status {
    padding: 5px 12px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid;
}

.request-ticket-status.pending {
    background: rgba(245, 124, 0, 0.15);
    border-color: rgba(245, 124, 0, 0.4);
    color: #ffb74d;
}

.request-ticket-status.approved {
    background: rgba(46, 204, 113, 0.15);
    border-color: rgba(46, 204, 113, 0.4);
    color: #81c784;
}

.request-ticket-status.denied {
    background: rgba(198, 40, 40, 0.15);
    border-color: rgba(198, 40, 40, 0.4);
    color: #ef9a9a;
}

.no-requests-message {
    text-align: center;
    padding: 30px;
    color: #888;
}

.no-requests-message p {
    margin-bottom: 15px;
}

.view-all-tickets {
    margin-top: 20px;
    text-align: center;
}

.btn-secondary-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 25px;
    background: transparent;
    border: 1px solid rgba(139, 92, 246, 0.4);
    color: #a78bfa;
    font-family: 'Cinzel', serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary-outline:hover {
    background: rgba(139, 92, 246, 0.1);
    color: #a78bfa;
    text-decoration: none;
}

/* ===========================================
   SUPPORTER PANEL - Cleanup & Polish
   =========================================== */

#panel-supporter .supporter-content {
    padding: 25px;
}

/* Responsive fixes */
@media (max-width: 768px) {
    .settings-panel-content {
        padding: 15px;
    }
    
    .account-info-grid {
        grid-template-columns: 1fr;
    }
    
    .supporter-tools-grid {
        grid-template-columns: 1fr;
    }
    
    .request-types-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .toggle-option {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .toggle-switch {
        align-self: flex-end;
    }
}

/* ===========================================
   ACTIVE REQUEST ITEMS (Dynamic)
   =========================================== */

.active-request-item {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-left: 3px solid #8B5CF6;
    padding: 15px 20px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.active-request-item:hover {
    background: rgba(0, 0, 0, 0.6);
    border-left-color: #a78bfa;
    transform: translateX(3px);
}

.request-item-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.request-type-badge {
    padding: 3px 10px;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    border-radius: 2px;
}

.request-type-badge.badge-plate {
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.request-type-badge.badge-phone {
    background: rgba(34, 197, 94, 0.2);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.request-type-badge.badge-character {
    background: rgba(168, 85, 247, 0.2);
    color: #c084fc;
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.request-type-badge.badge-custom {
    background: rgba(251, 146, 60, 0.2);
    color: #fb923c;
    border: 1px solid rgba(251, 146, 60, 0.3);
}

.request-type-badge.badge-haven {
    background: rgba(139, 0, 0, 0.2);
    color: #dc2626;
    border: 1px solid rgba(139, 0, 0, 0.3);
}

.request-type-badge.badge-territory {
    background: rgba(107, 142, 35, 0.2);
    color: #84cc16;
    border: 1px solid rgba(107, 142, 35, 0.3);
}

.request-type-badge.badge-elysium {
    background: rgba(212, 175, 55, 0.2);
    color: #d4af37;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.request-type-badge.badge-business {
    background: rgba(99, 102, 241, 0.2);
    color: #818cf8;
    border: 1px solid rgba(99, 102, 241, 0.3);
}

.request-type-badge.badge-house {
    background: rgba(236, 72, 153, 0.2);
    color: #f472b6;
    border: 1px solid rgba(236, 72, 153, 0.3);
}

.request-type-badge.badge-default {
    background: rgba(107, 114, 128, 0.2);
    color: #9ca3af;
    border: 1px solid rgba(107, 114, 128, 0.3);
}

.request-status-badge {
    padding: 3px 10px;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    border-radius: 2px;
}

.request-status-badge.status-open {
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.request-status-badge.status-pending {
    background: rgba(251, 191, 36, 0.15);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.request-status-badge.status-in-progress {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.request-item-title {
    color: #e0e0e0;
    font-size: 0.95rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.request-item-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 12px;
}

.request-item-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #888;
    font-size: 0.75rem;
}

.request-item-meta i {
    color: #666;
    font-size: 0.7rem;
}

.btn-view-request {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: #a78bfa;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-view-request:hover {
    background: rgba(139, 92, 246, 0.25);
    color: #c4b5fd;
    text-decoration: none;
}

.request-error {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 30px;
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.request-error i {
    font-size: 1.2rem;
}

#no-active-requests {
    text-align: center;
    padding: 30px;
    color: #666;
}

#no-active-requests p {
    margin-bottom: 5px;
}

#no-active-requests a {
    color: #8B5CF6;
    text-decoration: none;
}

#no-active-requests a:hover {
    text-decoration: underline;
}
