@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --bg-primary: #0b0f19;
    --bg-secondary: rgba(17, 25, 40, 0.75);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-highlight: rgba(255, 255, 255, 0.12);
    
    --text-primary: #f3f4f6;
    --text-muted: #9ca3af;
    --text-glow: #e0e7ff;
    
    /* Vibrant gradients & solid colors */
    --accent-purple: #8b5cf6;
    --accent-pink: #ec4899;
    --accent-blue: #3b82f6;
    --accent-cyan: #06b6d4;
    
    --color-success: #10b981;
    --color-warning: #f59e0b;
    --color-danger: #ef4444;
    --color-info: #06b6d4;
    --color-purple: #a855f7;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-glow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    --border-radius: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-body);
}

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

/* Beautiful animated mesh gradient background */
body::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(139, 92, 246, 0.15), transparent 40%),
                radial-gradient(circle at 70% 60%, rgba(236, 72, 153, 0.12), transparent 40%),
                radial-gradient(circle at 50% 20%, rgba(59, 130, 246, 0.12), transparent 45%);
    z-index: -1;
    animation: backgroundShift 25s infinite alternate ease-in-out;
}

@keyframes backgroundShift {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(5%, 5%) rotate(10deg); }
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: rgba(11, 15, 25, 0.5);
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Glassmorphism utility card */
.glass-card {
    background: var(--bg-secondary);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-glow);
    padding: 24px;
    transition: var(--transition-smooth);
}

.glass-card:hover {
    border-color: var(--glass-highlight);
    box-shadow: 0 8px 32px 0 rgba(139, 92, 246, 0.15);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: -0.02em;
}

/* Authentication Page */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.login-card {
    width: 100%;
    max-width: 420px;
    text-align: center;
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.login-header img {
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
    filter: drop-shadow(0 0 8px rgba(139, 92, 246, 0.5));
}

.login-header h2 {
    font-size: 2rem;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #fff 30%, var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.login-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 32px;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
    text-align: left;
    position: relative;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.input-wrapper {
    position: relative;
}

.input-wrapper i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.form-control {
    width: 100%;
    padding: 12px 16px 12px 42px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-smooth);
}

.form-control:focus {
    border-color: var(--accent-purple);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.25);
}

.form-control:focus + i {
    color: var(--accent-purple);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
    color: white;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.5);
    filter: brightness(1.1);
}

.btn-secondary {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: var(--glass-highlight);
    border-color: var(--text-muted);
}

.btn-danger {
    background: linear-gradient(135deg, var(--color-danger), #b91c1c);
    color: white;
}

.btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.btn-success {
    background: linear-gradient(135deg, var(--color-success), #047857);
    color: white;
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

/* Dashboard Layout */
.app-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header & Nav */
.app-header {
    background: rgba(11, 15, 25, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    padding: 16px 24px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 6px rgba(139, 92, 246, 0.4));
}

.brand-name {
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(to right, #ffffff, #d1d5db);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 8px;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 8px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.nav-item:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.03);
}

.nav-item.active {
    color: var(--text-primary);
    background: var(--glass-bg);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 0 12px rgba(139, 92, 246, 0.1);
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Main Area */
.main-content {
    flex: 1;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 24px;
}

.tab-panel {
    display: none;
    animation: fadeIn 0.4s ease;
}

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

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

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

/* Dashboard Grid Summary */
.dashboard-summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 24px;
}

.stat-widget {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.stat-widget::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
}

.stat-widget.tasks::after { background: var(--accent-purple); }
.stat-widget.namaz::after { background: var(--accent-pink); }
.stat-widget.food::after { background: var(--accent-cyan); }

.widget-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.widget-icon.purple { background: rgba(139, 92, 246, 0.15); color: var(--accent-purple); }
.widget-icon.pink { background: rgba(236, 72, 153, 0.15); color: var(--accent-pink); }
.widget-icon.cyan { background: rgba(6, 182, 212, 0.15); color: var(--accent-cyan); }

.widget-info {
    flex: 1;
}

.widget-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.widget-val {
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 4px;
}

/* Main Panels layout */
.dashboard-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
}

@media (max-width: 992px) {
    .dashboard-row {
        grid-template-columns: 1fr;
    }
}

/* Tasks styles */
.task-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.tasks-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 450px;
    overflow-y: auto;
    padding-right: 4px;
}

.task-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.task-item:hover {
    border-color: rgba(139, 92, 246, 0.3);
    background: rgba(255, 255, 255, 0.04);
}

.task-main {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
}

.task-checkbox {
    width: 20px;
    height: 20px;
    border: 2px solid var(--glass-border);
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.task-checkbox.checked {
    border-color: var(--color-success);
    background: var(--color-success);
}

.task-checkbox.checked i {
    color: white;
    font-size: 0.75rem;
}

.task-title {
    font-weight: 500;
    transition: var(--transition-smooth);
}

.task-item.completed .task-title {
    text-decoration: line-through;
    color: var(--text-muted);
}

.priority-badge {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.priority-badge.high { background: rgba(239, 68, 68, 0.15); color: var(--color-danger); }
.priority-badge.medium { background: rgba(245, 158, 11, 0.15); color: var(--color-warning); }
.priority-badge.low { background: rgba(6, 182, 212, 0.15); color: var(--color-info); }

.task-due {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.task-actions {
    display: flex;
    gap: 8px;
}

.action-btn {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.action-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

.action-btn.delete:hover {
    background: rgba(239, 68, 68, 0.15);
    color: var(--color-danger);
}

/* Namaz Tracker Styles */
.namaz-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.namaz-card {
    padding: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.namaz-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.namaz-time {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.namaz-status-text {
    font-size: 0.9rem;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 16px;
}

.status-pending { background: rgba(255, 255, 255, 0.05); color: var(--text-muted); }
.status-offered-on-time { background: rgba(16, 185, 129, 0.15); color: var(--color-success); }
.status-offered-late { background: rgba(245, 158, 11, 0.15); color: var(--color-warning); }
.status-missed { background: rgba(239, 68, 68, 0.15); color: var(--color-danger); }
.status-qaza { background: rgba(168, 85, 247, 0.15); color: var(--color-purple); }

.namaz-select {
    width: 100%;
    padding: 8px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    outline: none;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.namaz-select:focus {
    border-color: var(--accent-purple);
}

/* Foods & Water Log Styles */
.food-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

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

.progress-container {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    height: 8px;
    margin: 12px 0;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    border-radius: 10px;
    transition: width 0.5s ease-out;
}

.progress-bar.calories {
    background: linear-gradient(to right, var(--accent-pink), var(--accent-purple));
}

.progress-bar.water {
    background: linear-gradient(to right, var(--accent-cyan), var(--accent-blue));
}

.food-log-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 300px;
    overflow-y: auto;
}

.food-log-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
}

.food-log-info h4 {
    font-size: 0.95rem;
    font-weight: 500;
}

.food-log-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.food-log-amount {
    display: flex;
    align-items: center;
    gap: 12px;
}

.food-badge {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
}

/* Daily Activities Styles */
.activity-input-section {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 12px;
    margin-bottom: 20px;
}

@media (max-width: 576px) {
    .activity-input-section {
        grid-template-columns: 1fr;
    }
}

.activity-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 400px;
    overflow-y: auto;
}

.activity-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
}

.activity-details h4 {
    font-size: 1rem;
    font-weight: 500;
}

.activity-details p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Settings Styles */
.settings-section {
    margin-bottom: 32px;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 24px;
}

.settings-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.settings-section h3 {
    margin-bottom: 16px;
    font-size: 1.3rem;
    color: var(--text-glow);
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.1);
    transition: .4s;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--accent-purple);
}

input:checked + .slider:before {
    transform: translateX(20px);
}

.setting-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.setting-label-col {
    max-width: 70%;
}

.setting-label-col h4 {
    font-size: 1rem;
    font-weight: 500;
}

.setting-label-col p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.settings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 16px;
}

.settings-time-card {
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.time-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.time-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    border-radius: 6px;
    padding: 4px 8px;
    font-size: 0.9rem;
    outline: none;
    width: 90px;
    text-align: center;
}

/* Modals */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.modal.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    width: 90%;
    max-width: 500px;
    transform: scale(0.9);
    transition: var(--transition-smooth);
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.close-modal {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
}

/* Toast Messages */
.toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 2000;
}

.toast {
    padding: 12px 24px;
    border-radius: 8px;
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    box-shadow: var(--shadow-glow);
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateY(100px);
    opacity: 0;
    animation: slideIn 0.3s forwards cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes slideIn {
    to { transform: translateY(0); opacity: 1; }
}

.toast.success { border-left: 4px solid var(--color-success); }
.toast.error { border-left: 4px solid var(--color-danger); }
.toast.info { border-left: 4px solid var(--color-info); }

/* Fitness Tracker Styles */
.water-cups-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(75px, 1fr));
    gap: 12px;
}

.water-cup-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    user-select: none;
}

.water-cup-item:hover {
    border-color: var(--accent-cyan);
    background: rgba(6, 182, 212, 0.05);
}

.water-cup-item.checked {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.25), rgba(59, 130, 246, 0.25));
    border-color: var(--accent-cyan);
    box-shadow: 0 0 12px rgba(6, 182, 212, 0.3);
}

.water-cup-item .cup-hour {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 6px;
    font-weight: 500;
}

.water-cup-item.checked .cup-hour {
    color: var(--text-primary);
}

.water-cup-item .cup-icon {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.2);
    transition: var(--transition-smooth);
}

.water-cup-item.checked .cup-icon {
    color: var(--accent-cyan);
    transform: scale(1.1);
    filter: drop-shadow(0 0 4px rgba(6, 182, 212, 0.5));
}

/* Timeline schedule */
.fitness-timeline-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    padding-left: 16px;
}

.fitness-timeline-list::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 4px;
    width: 2px;
    height: calc(100% - 20px);
    background: var(--glass-border);
}

.timeline-checkbox-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.timeline-checkbox-row::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text-muted);
    border: 2px solid var(--bg-primary);
    transition: var(--transition-smooth);
}

.timeline-checkbox-row.checked::before {
    background: var(--accent-cyan);
    box-shadow: 0 0 8px var(--accent-cyan);
}

.timeline-time-pill {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    margin-right: 8px;
}

.timeline-label-col {
    display: flex;
    align-items: center;
    flex: 1;
}

.timeline-text {
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.timeline-checkbox-row.checked .timeline-text {
    text-decoration: line-through;
    color: var(--text-muted);
}

/* Workout list */
.workout-exercise-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.workout-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    transition: var(--transition-smooth);
}

.workout-item:hover {
    border-color: rgba(6, 182, 212, 0.3);
    background: rgba(255, 255, 255, 0.03);
}

.workout-item.checked .workout-text {
    text-decoration: line-through;
    color: var(--text-muted);
}

/* Diet styling */
.diet-plan-reference {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.diet-meal-row {
    padding: 10px 0;
    border-bottom: 1px solid var(--glass-border);
}

.diet-meal-row:last-child {
    border-bottom: none;
}

.diet-meal-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px;
}

.diet-meal-header strong {
    font-size: 0.9rem;
    color: var(--text-glow);
}

.diet-kcal {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-pink);
}

.diet-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Checkbox Checklist options */
.checkbox-checklist {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkbox-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.checkbox-row span {
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.checkbox-row.checked span {
    text-decoration: line-through;
    color: var(--text-muted);
}
