/* CSS Design System for Hermes Freelance Manager - Glassmorphism Premium Theme */

:root {
    --bg-primary: #0a0b10;
    --bg-surface: rgba(22, 24, 37, 0.7);
    --bg-surface-hover: rgba(36, 39, 58, 0.8);
    --border-color: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.18);
    
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    
    /* Vibrant HSL Accents */
    --accent-primary: hsl(265, 85%, 65%); /* Purple-Indigo */
    --accent-primary-glow: rgba(139, 92, 246, 0.35);
    --accent-secondary: hsl(190, 90%, 50%); /* Electric Cyan */
    --accent-success: hsl(142, 70%, 45%); /* Emerald Green */
    --accent-danger: hsl(350, 80%, 60%); /* Ruby Red */
    --accent-warning: hsl(40, 90%, 60%); /* Amber Yellow */
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --shadow-main: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-main);
    font-family: var(--font-body);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Background Glowing Blobs */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.15;
    pointer-events: none;
}
.blob-1 {
    width: 400px;
    height: 400px;
    background: var(--accent-primary);
    top: -100px;
    right: -100px;
}
.blob-2 {
    width: 300px;
    height: 300px;
    background: var(--accent-secondary);
    bottom: 10%;
    left: -50px;
}
.blob-3 {
    width: 350px;
    height: 350px;
    background: var(--accent-success);
    top: 40%;
    right: 20%;
    opacity: 0.08;
}

/* App Container Layout */
.app-container {
    display: flex;
    min-height: 100vh;
    backdrop-filter: blur(10px);
}

/* Sidebar Styling */
.sidebar {
    width: 280px;
    background: rgba(13, 14, 24, 0.65);
    border-right: 1px solid var(--border-color);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 10;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
}
.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
    box-shadow: 0 4px 15px var(--accent-primary-glow);
}
.brand-text h1 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.1;
    background: linear-gradient(to right, #ffffff, #d8b4fe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.brand-text span {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex-grow: 1;
}
.nav-item {
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-muted);
    padding: 0.85rem 1rem;
    border-radius: 10px;
    text-align: left;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition-smooth);
}
.nav-item i {
    font-size: 1.1rem;
}
.nav-item:hover {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.03);
}
.nav-item.active {
    color: #fff;
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.1);
}

.agent-status-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 1rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.status-indicator-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.status-indicator-dot.online {
    background: var(--accent-success);
    box-shadow: 0 0 10px var(--accent-success);
}
.status-text p {
    margin: 0;
}
.status-title {
    font-size: 0.85rem;
    font-weight: 600;
}
.status-sub {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* Main Content Styling */
.main-content {
    flex-grow: 1;
    padding: 2rem 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-height: 100vh;
    overflow-y: auto;
}

/* Header Area */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-search {
    position: relative;
    width: 350px;
}
.header-search i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}
.header-search input {
    width: 100%;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    color: var(--text-main);
    outline: none;
    font-family: inherit;
    transition: var(--transition-smooth);
}
.header-search input:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 15px var(--accent-primary-glow);
}

/* Button UI */
.btn {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-main);
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    font-family: var(--font-heading);
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-smooth);
}
.btn-primary {
    background: linear-gradient(135deg, var(--accent-primary), hsl(265, 80%, 55%));
    border: none;
    color: #fff;
    box-shadow: 0 4px 15px var(--accent-primary-glow);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--accent-primary-glow);
}
.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
}
.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}
.btn-danger {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #fca5a5;
}
.btn-danger:hover {
    background: rgba(239, 68, 68, 0.25);
}
.btn-sm {
    padding: 0.5rem 0.85rem;
    font-size: 0.85rem;
}
.btn-icon {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-smooth);
}
.btn-icon:hover {
    color: var(--text-main);
}

/* General Layout Elements */
.tab-content {
    display: none;
    animation: fadeIn 0.4s ease-out;
}
.tab-content.active {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.tab-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
}
.tab-header h2 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
}
.subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    display: block;
    margin-top: 0.25rem;
}

/* Filter Chips */
.filters {
    display: flex;
    gap: 0.5rem;
}
.filter-chip {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-smooth);
}
.filter-chip:hover {
    color: var(--text-main);
    border-color: var(--border-hover);
}
.filter-chip.active {
    background: var(--text-main);
    color: var(--bg-primary);
    font-weight: 600;
    border-color: var(--text-main);
}

/* Opportunities Grid */
.opportunities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

/* Premium Opportunity Card */
.opp-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.25rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}
.opp-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-main);
    background: var(--bg-surface-hover);
}
.opp-card-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
}
.badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.65rem;
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.badge-workana { background: rgba(56, 189, 248, 0.15); color: #38bdf8; }
.badge-upwork { background: rgba(34, 197, 94, 0.15); color: #4ade80; }
.badge-fiverr { background: rgba(16, 185, 129, 0.15); color: #34d399; }
.badge-freelancer { background: rgba(239, 68, 68, 0.15); color: #fca5a5; }
.badge-linkedin { background: rgba(59, 130, 246, 0.15); color: #93c5fd; }
.badge-default { background: rgba(156, 163, 175, 0.15); color: #d1d5db; }

.status-badge {
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 20px;
    padding: 0.2rem 0.6rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-color);
}
.status-badge.new { color: var(--accent-secondary); border-color: rgba(6, 182, 212, 0.3); }
.status-badge.analyzed { color: var(--accent-primary); border-color: rgba(139, 92, 246, 0.3); }
.status-badge.proposed { color: var(--accent-warning); border-color: rgba(245, 158, 11, 0.3); }
.status-badge.accepted { color: var(--accent-success); border-color: rgba(16, 185, 129, 0.3); }
.status-badge.not-applicable { color: var(--text-muted); border-color: rgba(156, 163, 175, 0.3); }

.opp-card-body h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}
.opp-card-body p {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
}
.opp-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}
.budget-text {
    font-weight: 600;
    color: #fff;
}

/* Glass Panels */
.glass-panel {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}

/* Modal Overlay & Card */
.modal-overlay, .slideover-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 100;
}
.modal-card {
    width: 100%;
    max-width: 600px;
    padding: 2rem;
    border-radius: 20px;
}
.modal-header, .slideover-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}
.modal-header h3, .slideover-header h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
}
.btn-close-modal, .btn-close-slideover {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}
.btn-close-modal:hover, .btn-close-slideover:hover {
    color: #fff;
}

/* Forms */
.form-group {
    margin-bottom: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.form-row {
    display: flex;
    gap: 1rem;
}
.form-row .form-group {
    flex: 1;
}
label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}
input, textarea, select {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.75rem;
    color: var(--text-main);
    font-family: inherit;
    outline: none;
    transition: var(--transition-smooth);
}
input:focus, textarea:focus, select:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 10px var(--accent-primary-glow);
}
.modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

/* Slideover Detail Panel (Right to Left Slide-in) */
.slideover-card {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    max-width: 650px;
    height: 100%;
    border-radius: 0;
    border-left: 1px solid var(--border-color);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    animation: slideIn 0.4s ease-out;
}
.slideover-body {
    flex-grow: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-right: 0.5rem;
}

/* Detail Inner Tabs */
.detail-tabs {
    display: flex;
    border-bottom: 1px solid var(--border-color);
    gap: 1rem;
}
.dt-tab {
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 0.75rem 0.5rem;
    cursor: pointer;
    position: relative;
    transition: var(--transition-smooth);
}
.dt-tab.active {
    color: #fff;
}
.dt-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-primary);
    box-shadow: 0 0 8px var(--accent-primary);
}
.dt-content {
    display: none;
    flex-direction: column;
    gap: 1.5rem;
}
.dt-content.active {
    display: flex;
}

.desc-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.25rem;
}
.desc-box h4 {
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}
.desc-box p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    white-space: pre-line;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.info-item {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    text-align: center;
}
.info-item .lbl {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 0.25rem;
}
.info-item .val {
    font-family: var(--font-heading);
    font-weight: 600;
}

/* AI Empty and Results Styling */
.run-ai-prompt-box {
    text-align: center;
    padding: 3rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.run-ai-prompt-box i {
    font-size: 3rem;
    color: var(--accent-primary);
    text-shadow: 0 0 20px var(--accent-primary-glow);
}
.run-ai-prompt-box p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.analysis-badge-row {
    display: flex;
    gap: 0.5rem;
}
.anal-badge {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.25);
    color: #c084fc;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
}

.metric-estimate-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}
.est-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.02), rgba(255,255,255,0.05));
    border: 1px solid var(--border-color);
    padding: 1rem 0.5rem;
    border-radius: 12px;
    text-align: center;
}
.est-card .lbl {
    font-size: 0.7rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 0.35rem;
}
.est-card .val {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
}

.recommendation-strip {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}
.recommendation-strip i {
    color: var(--accent-success);
    font-size: 1.25rem;
    margin-top: 0.1rem;
}
.recommendation-strip strong {
    font-family: var(--font-heading);
    display: block;
    margin-bottom: 0.15rem;
}
.recommendation-strip p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.detail-section {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.detail-section h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    border-left: 3px solid var(--accent-primary);
    padding-left: 0.5rem;
}
.detail-section p, .detail-section ul {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}
.detail-section ul {
    padding-left: 1.25rem;
}
.detail-section ul li {
    margin-bottom: 0.25rem;
}
.pre-wrap {
    white-space: pre-wrap;
}

/* Proposals and Pricing Formats */
.proposal-container-box {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.section-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}
.section-title-row h4 {
    font-family: var(--font-heading);
    font-weight: 600;
}
.proposal-section textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1rem;
    color: var(--text-main);
    font-family: inherit;
    font-size: 0.9rem;
    line-height: 1.5;
    resize: vertical;
}
.quote-output-box {
    background: rgba(0,0,0,0.25);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.25rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}
.divider {
    border: none;
    border-top: 1px solid var(--border-color);
}
.action-footer-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1rem;
}

/* Metrics and Dashboard Styles */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.stat-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    backdrop-filter: blur(10px);
}
.stat-icon {
    width: 55px;
    height: 55px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}
.pink-glow { background: rgba(236, 72, 153, 0.1); color: #ec4899; }
.blue-glow { background: rgba(59, 130, 246, 0.1); color: #3b82f6; }
.green-glow { background: rgba(16, 185, 129, 0.1); color: #10b981; }

.stat-info h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
}
.stat-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.metrics-details-row {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 1.5rem;
}
.metrics-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

/* Table Design */
.table-wrapper {
    overflow-x: auto;
}
.premium-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}
.premium-table th, .premium-table td {
    padding: 0.75rem 1rem;
    text-align: left;
}
.premium-table th {
    font-family: var(--font-heading);
    color: var(--text-muted);
    font-weight: 600;
    border-bottom: 1px solid var(--border-color);
}
.premium-table td {
    border-bottom: 1px solid rgba(255,255,255,0.03);
}
.text-center {
    text-align: center;
}

/* Platform bar charts */
.platform-bars {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.platform-bar-item {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}
.p-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
}
.p-bar-bg {
    width: 100%;
    height: 8px;
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
    overflow: hidden;
}
.p-bar-fill {
    height: 100%;
    background: linear-gradient(to right, var(--accent-primary), var(--accent-secondary));
    border-radius: 4px;
}

/* Project Cards list layout */
.projects-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.project-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    transition: var(--transition-smooth);
}
.project-card-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}
.project-header-left h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}
.project-header-left span {
    font-size: 0.85rem;
    color: var(--text-muted);
}
.project-header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.project-header-right select {
    padding: 0.4rem 0.75rem;
    font-size: 0.85rem;
}

.project-meta-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}
.meta-box {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 0.75rem 1rem;
}
.meta-box .lbl {
    font-size: 0.7rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 0.15rem;
}
.meta-box .val {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
}

/* QA Deliverables section */
.qa-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.qa-section h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.deliverable-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.deliverable-item {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.del-desc {
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.del-desc.approved {
    text-decoration: line-through;
    color: var(--text-muted);
}
.del-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.del-checkbox {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--accent-success);
}
.add-deliverable-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}
.add-deliverable-form input {
    flex-grow: 1;
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes slideIn {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}
.animate-pop {
    animation: popIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes popIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.hidden {
    display: none !important;
}

/* Scrollbar customization */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}
