/* assets/style.css */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;1,400&display=swap');

body { font-family: 'Plus Jakarta Sans', sans-serif; background-color: #050505; color: white; }
.font-serif { font-family: 'Playfair Display', serif; }

.glass-panel {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}
.glass-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}
.custom-scrollbar::-webkit-scrollbar { width: 6px; }
.custom-scrollbar::-webkit-scrollbar-track { background: rgba(255,255,255,0.02); }
.custom-scrollbar::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 10px; }
.mesh-bg { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; overflow: hidden; }
.blob { position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.4; animation: float 10s infinite ease-in-out; }

@keyframes float {
    0% { transform: translate(0, 0); }
    50% { transform: translate(20px, -20px); }
    100% { transform: translate(0, 0); }
}

.page-transition { transition: opacity 0.3s ease-in-out; }
.hidden-page { display: none; opacity: 0; }
.visible-page { display: block; opacity: 1; }

/* Spirituality Styles */
.status-grace { background-color: rgba(34, 197, 94, 0.1); color: #4ade80; border: 1px solid #22c55e; }
.status-sin { background-color: rgba(239, 68, 68, 0.1); color: #f87171; border: 1px solid #ef4444; }

/* ToDo Styles*/
/************************************
    KANBAN BOARD
************************************/
.kanban-board {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.kanban-column {
    flex: 1;
    background: rgba(255,255,255,0.03);
    padding: 16px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    flex-direction: column;
    height: calc(100vh - 260px);
}

.kanban-header {
    font-size: 1rem;
    margin-bottom: 12px;
    font-weight: 600;
}

/* Subtle luxury palette */
.level1 { color: #B85C5C; }     /* Rosewood */
.level2 { color: #C9A66B; }     /* Dusty Gold */
.level3 { color: #5A8F68; }     /* Forest Green */

/* Each column border gets subtle tint */
.kanban-column[data-level="1"] { border-color: rgba(184,92,92,0.35); }
.kanban-column[data-level="2"] { border-color: rgba(201,166,107,0.35); }
.kanban-column[data-level="3"] { border-color: rgba(90,143,104,0.35); }

/* Dropzone fills column height */
.kanban-dropzone {
    flex: 1;
    overflow-y: auto;
    padding-right: 4px;
    border-radius: 12px;
}

/************************************
    TASK CARDS
************************************/
.task-card {
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 14px;
    margin-bottom: 12px;
    transition: 0.2s ease;
    cursor: grab;
    border: 1px solid rgba(255,255,255,0.13);
}

/* Subtle border color based on level */
.task-card.level1 { border-color: #B85C5C; }
.task-card.level2 { border-color: #C9A66B; }
.task-card.level3 { border-color: #5A8F68; }

.task-card:hover {
    background: rgba(255,255,255,0.08);
}

/* Dragging animation */
.task-card.dragging {
    opacity: 0.3;
    transform: scale(1.02);
}

/* Dropzone visual feedback */
.kanban-dropzone.drag-over {
    background: rgba(255,255,255,0.04);
    border: 1px dashed rgba(255,255,255,0.15);
}

.task-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 14px;
    border-radius: 12px;
    margin-bottom: 12px;
    cursor: grab;
}

.task-card.dragging {
    opacity: 0.4;
}

.kanban-dropzone {
    min-height: 200px;
    padding: 10px;
    border-radius: 12px;
    border: 1px dashed rgba(255,255,255,0.1);
}

.kanban-dropzone.drag-over {
    background-color: rgba(255,255,255,0.06);
}

.kanban-col {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 14px;
    backdrop-filter: blur(4px);
}

.kanban-col[data-level="1"] {
    border-color: rgba(255, 99, 99, 0.4);
}

.kanban-col[data-level="2"] {
    border-color: rgba(255, 221, 88, 0.4);
}

.kanban-col[data-level="3"] {
    border-color: rgba(88, 150, 255, 0.4);
}

/* Spacing for dropzone inside the column */
.kanban-dropzone {
    min-height: 200px;
    margin-top: 10px;
    padding: 8px;
}

/* ================================
   WORKING — Cross-browser date picker
   ================================ */

input[type="date"] {
    appearance: auto !important;
    -webkit-appearance: auto !important;
    color-scheme: dark;
    background-color: rgba(0,0,0,0.3);
    color: white;
    padding-left: 12px;
}

/* Calendar icon visible */
input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    opacity: 1;
    cursor: pointer;
    margin-left: auto !important;
}

/* Remove inner buttons */
input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-clear-button {
    display: none;
}

/* Ensure Chrome layouts fields properly */
input[type="date"]::-webkit-datetime-edit {
    color: white !important;
    padding: 0 6px;
}

.date-icon {
    pointer-events: none !important;
}

/* ======================================
   Custom Large Checkbox for Task Cards
   ====================================== */

.task-select {
    appearance: none;
    -webkit-appearance: none;
    background-color: transparent;
    width: 26px;
    height: 26px;
    border: 2px solid #6366f1; /* Indigo border */
    border-radius: 6px;
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.15s ease;
}

.task-select:checked {
    background-color: #6366f1;
    border-color: #6366f1;
}

.task-select:checked::after {
    content: "✔";
    color: white;
    font-size: 18px;
    position: absolute;
    top: 0px;
    left: 4px;
}

/* Make Kanban checkboxes bigger */
.task-select-checkbox {
    width: 22px;
    height: 22px;
    accent-color: #6366f1; /* Indigo (beautiful) */
    cursor: pointer;
}

.task-select-checkbox:checked {
    transform: scale(1.1);
}
/* =============================== */
/* JOBS TOASTS                     */
/* =============================== */

.job-toast {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: white;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    animation: jobToastFadeIn 0.25s ease-out;
}

@keyframes jobToastFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Job Serch buttons */
.btn-search {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: white;
}
.btn-search:hover {
    background: rgba(255,255,255,0.14);
}

.btn-apply {
    background-color: #4f46e5;
}
.btn-apply:hover {
    background-color: #6366f1;
}
.btn-follow {
    background-color: #7c3aed;
}
.btn-follow:hover {
    background-color: #8b5cf6;
}
.btn-delete {
    background-color: #dc2626;
}
.btn-delete:hover {
    background-color: #ef4444;
}
.job-checkbox-ui {
    appearance: none;
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    border: 2px solid #6366f1; /* Indigo */
    background: rgba(255,255,255,0.08);
    border-radius: 6px;
    cursor: pointer;
    transition: 0.15s ease;
    position: relative;
}

.job-checkbox-ui:checked {
    background-color: #6366f1;
    border-color: #6366f1;
}

.job-checkbox-ui:checked::after {
    content: "✔";
    color: white;
    font-size: 16px;
    position: absolute;
    top: -1px;
    left: 4px;
}

/* ============================================
   LIZ'S UNIFIED LUXURY BUTTON SYSTEM (GLOBAL)
   ============================================ */

/* Base Button Reset */
.lx-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.22s ease;
    border: 1px solid transparent;
    backdrop-filter: blur(12px);
    user-select: none;
}

/* Glass Buttons (neutral & prep) */
.lx-glass {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.9);
}
.lx-glass:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.18);
}

/* Primary Indigo */
.lx-primary {
    background: #4f46e5;
    color: white;
}
.lx-primary:hover {
    background: #6366f1;
    transform: translateY(-1px);
}

/* Purple - Follow-up / Creativity */
.lx-purple {
    background: #7c3aed;
    color: white;
}
.lx-purple:hover {
    background: #8b5cf6;
    transform: translateY(-1px);
}

/* Danger Red */
.lx-danger {
    background: #dc2626;
    color: white;
}
.lx-danger:hover {
    background: #ef4444;
    transform: translateY(-1px);
}

/* Success / Apply */
.lx-success {
    background: #10b981;
    color: white;
}
.lx-success:hover {
    background: #34d399;
    transform: translateY(-1px);
}

/* Subtle Golden Accent (optional special actions) */
.lx-gold {
    background: #c89b3c;
    color: white;
}
.lx-gold:hover {
    background: #d9b05a;
    transform: translateY(-1px);
}

/* Optional Press Animation */
.lx-btn:active {
    transform: scale(0.96);
}

/* GLOBAL NICE CHECKBOX (matches ToDo aesthetic) */

.lx-checkbox {
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 6px;
    border: 2px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.05);
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
}

.lx-checkbox:hover {
    border-color: rgba(255,255,255,0.45);
}

.lx-checkbox:checked {
    background: #6366f1;
    border-color: #6366f1;
}

.lx-checkbox:checked::after {
    content: "✔";
    position: absolute;
    top: -1px;
    left: 5px;
    font-size: 15px;
    color: white;
    font-weight: bold;
}

/* LIGHT BLUE GLASS — Search Jobs */
.lx-glass-blue {
    background: rgba(59, 130, 246, 0.12); /* blue-500 */
    border: 1px solid rgba(59, 130, 246, 0.25);
    color: #93c5fd; /* blue-300 */
}
.lx-glass-blue:hover {
    background: rgba(59, 130, 246, 0.18);
    border-color: rgba(59, 130, 246, 0.35);
}

/* GOLD GLASS — Interview Prep */
.lx-glass-gold {
    background: rgba(234, 179, 8, 0.12); /* amber-500 */
    border: 1px solid rgba(234, 179, 8, 0.25);
    color: #fcd34d; /* amber-300 */
}
.lx-glass-gold:hover {
    background: rgba(234, 179, 8, 0.18);
    border-color: rgba(234, 179, 8, 0.35);
}

/* ============================
   BOLD BLUE — Search Jobs
============================ */
.lx-blue {
    background-color: #3b82f6; /* blue-500 */
    color: white;
    border: none;
}
.lx-blue:hover {
    background-color: #2563eb; /* blue-600 */
}

/* ============================
   BOLD GOLD — Interview Prep
============================ */
.lx-gold {
    background-color: #f59e0b; /* amber-500 */
    color: white;
    border: none;
}
.lx-gold:hover {
    background-color: #d97706; /* amber-600 */
}
/* ============================
   UNIFIED JOB CARD BASE STYLE
============================ */
/* =======================================================
   BEZELLED COLOR OUTLINE FOR JOB CARDS (screenshot accurate)
   ======================================================= */
.job-card {
    background: rgba(255,255,255,0.05) !important;
    border-radius: 16px !important;
    padding: 18px !important;
    border-width: 2px !important;     /* thicker, bezel look */
    transition: 0.2s ease;
}

/* Wishlist */
.job-card[data-jobtype="wishlist"] {
    border-color: rgba(148,163,184,0.6) !important;
}

/* Applied */
.job-card[data-jobtype="applied"] {
    border-color: rgba(234,179,8,0.85) !important;
}

/* Interview */
.job-card[data-jobtype="interview"] {
    border-color: rgba(59,130,246,0.85) !important;
}

/* Offers */
.job-card[data-jobtype="offers"] {
    border-color: rgba(34,197,94,0.85) !important;
}

/* Rejected */
.job-card[data-jobtype="rejected"] {
    border-color: rgba(239,68,68,0.85) !important;
}

/* ============================
   CATEGORY COLOR ACCENTS
   (Matches your columns)
============================ */
/* Wishlist — Gray */
.job-card[data-status="wishlist"] {
    border-left: 3px solid rgba(148,163,184,0.7); /* Slate-400 */
}

/* Applied — Yellow */
.job-card[data-status="applied"] {
    border-left: 3px solid rgba(234,179,8,0.8); /* Yellow-500 */
}

/* Interview — Blue */
.job-card[data-status="interview"] {
    border-left: 3px solid rgba(59,130,246,0.8); /* Blue-500 */
}

/* Offers — Green */
.job-card[data-status="offers"] {
    border-left: 3px solid rgba(34,197,94,0.8); /* Green-500 */
}

/* Rejected — Red */
.job-card[data-status="rejected"] {
    border-left: 3px solid rgba(239,68,68,0.8); /* Red-500 */
}

/* ============================
   Checkbox (top-right)
============================ */
.job-checkbox-ui {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 22px;
    height: 22px;
    accent-color: #6366f1;
    background: rgba(255,255,255,0.15);
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.3);
    cursor: pointer;
    transform: scale(1.25);
}

/* =========================================
   MARKETING / CONTENT CREATOR HUB STYLES
   ========================================= */

/* Brand Gradients & Borders */
.brand-x { border-color: rgba(255, 255, 255, 0.3); }
.brand-x:hover { box-shadow: 0 0 15px rgba(255, 255, 255, 0.1); border-color: white; }

.brand-insta { border-color: rgba(236, 72, 153, 0.3); } /* Pink-500 */
.brand-insta:hover { 
    box-shadow: 0 0 15px rgba(236, 72, 153, 0.2); 
    border-color: #ec4899;
    background: linear-gradient(145deg, rgba(236,72,153,0.05), rgba(0,0,0,0));
}

.brand-tiktok { border-color: rgba(45, 212, 191, 0.3); } /* Teal-400 */
.brand-tiktok:hover { box-shadow: 0 0 15px rgba(45, 212, 191, 0.2); border-color: #2dd4bf; }

.brand-youtube { border-color: rgba(239, 68, 68, 0.3); } /* Red-500 */
.brand-youtube:hover { box-shadow: 0 0 15px rgba(239, 68, 68, 0.2); border-color: #ef4444; }

/* Profile Card Layout */
.profile-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px;
    background: rgba(255,255,255,0.03);
    border-radius: 8px;
    width: 100%;
}

/* Algorithm Chaser Bars */
.algo-bar-container {
    background: rgba(255,255,255,0.1);
    height: 6px;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 6px;
}
.algo-bar {
    height: 100%;
    border-radius: 4px;
    transition: width 1s ease-in-out;
}
.algo-hot { background: linear-gradient(90deg, #f59e0b, #ef4444); box-shadow: 0 0 10px rgba(239,68,68,0.5); }
.algo-warm { background: linear-gradient(90deg, #3b82f6, #8b5cf6); }
.algo-cold { background: #4b5563; }

/* Action Buttons (Pause, Cancel, Go) */
.action-btn {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all 0.2s ease;
    border: 1px solid rgba(255,255,255,0.1);
}
.btn-go { background: rgba(34,197,94,0.2); color: #4ade80; }
.btn-go:hover { background: #22c55e; color: white; box-shadow: 0 0 10px rgba(34,197,94,0.4); }

.btn-pause { background: rgba(234,179,8,0.2); color: #facc15; }
.btn-pause:hover { background: #eab308; color: white; }

.btn-cancel { background: rgba(239,68,68,0.2); color: #f87171; }
.btn-cancel:hover { background: #ef4444; color: white; }

/* =========================================
   MICROSOFT COMMAND CENTER STYLES
   ========================================= */

/* The PACV Chart Container */
.chart-metric-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 10px;
    border-left: 2px solid rgba(255,255,255,0.2);
}

/* Outlook/Teams Pulse Styling */
.pulse-outlook { border-left: 3px solid #0ea5e9; } /* Sky Blue */
.pulse-teams { border-left: 3px solid #6366f1; }   /* Indigo */

/* Compact Form Inputs for Log Hours */
.ms-input {
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    font-size: 12px;
    border-radius: 6px;
    padding: 6px 10px;
    width: 100%;
    transition: 0.2s;
}
.ms-input:focus { border-color: #6366f1; outline: none; }
.ms-input:disabled { background: transparent; border-color: transparent; padding-left: 0; color: #cbd5e1; }

/* =========================================
   BIO-OS / HEALTH STYLES
   ========================================= */

/* The "Medical Glass" look */
.glass-medical {
    background: rgba(6, 182, 212, 0.05); /* Cyan tint */
    border: 1px solid rgba(6, 182, 212, 0.2);
}

/* Vitality Pulse Animation */
.heartbeat-line {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: dash 2s linear infinite;
}
@keyframes dash {
    to { stroke-dashoffset: 0; }
}

/* Vitamin Pill Design */
.pill-card {
    background: rgba(255,255,255,0.05);
    border-radius: 50px; /* Pill shape */
    padding: 8px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.2s;
}
.pill-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(6, 182, 212, 0.5);
    transform: scale(1.02);
}

/* Macro Progress Bars */
.macro-bar-bg { background: rgba(255,255,255,0.1); height: 4px; border-radius: 4px; width: 100%; overflow: hidden; }
.macro-fill { height: 100%; border-radius: 4px; }