/* ==================== DASHBOARD LAYOUTS ==================== */
.grid-2-1-1 {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 15px;
    flex: 1;
    min-height: 0;
}
.combined-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    height: 100%;
}

/* ==================== FOLLOW-UP ITEMS ==================== */
.follow-up-list {
    display: flex; flex-direction: column; gap: 10px;
    overflow-y: auto; padding-right: 4px; flex: 1;
}
.follow-up-item {
    display: flex; align-items: center; padding: 10px;
    border-radius: 8px;
    background: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.9); transition: var(--transition-normal);
}
.follow-up-item:hover { background: #fff; box-shadow: var(--theme-glow-box-hover); }
.fu-avatar { width: 36px; height: 36px; border-radius: 5px; background-size: cover; margin-right: 10px; }
.fu-info { flex: 1; }
.fu-name { font-weight: 600; font-size: 0.85rem; }
.fu-sub { font-size: 0.7rem; color: var(--text-light); }
.fu-action {
    width: 30px; height: 30px; border-radius: 4px;
    background: rgba(0,210,255,0.1); color: var(--theme-accent);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: var(--transition-normal);
    border: none;
    outline: none;
}
.fu-action i {
    border: none;
    outline: none;
}
.fu-action:hover { background: var(--theme-accent); color: #fff; box-shadow: var(--theme-glow-box-hover); }

/* ==================== ADD TASK BUTTON ==================== */
.add-task-btn {
    width: 36px;
    border-radius: 8px;
    border: none;
    background: var(--theme-accent);
    color: white;
    cursor: pointer;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.add-task-btn:hover {
    background: var(--theme-accent-light);
    box-shadow: var(--theme-glow-box-hover);
}

/* ==================== CALENDAR ==================== */
.calendar-wrapper { display: flex; flex-direction: column; height: 100%; }
.calendar-grid {
    display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px;
    text-align: center; margin-top: 6px; font-size: 0.8rem;
    background: rgba(var(--theme-accent), 0.05); padding: 10px;
    border-radius: 6px;
    border: 1px solid rgba(var(--theme-accent), 0.2);
    min-height: 200px; flex: 1;
}
.day-name { font-weight: 600; color: var(--text-light); font-size: 0.65rem; padding: 3px 0; }
.date-num {
    padding: 5px; border-radius: 3px; cursor: pointer; transition: var(--transition-fast);
    background: rgba(255,255,255,0.5); display: flex; align-items: center; justify-content: center;
    min-height: 26px;
}
.date-num:hover { background: #fff; color: var(--theme-accent); box-shadow: var(--theme-glow-box-hover); }
.date-num.active { background: var(--theme-accent); color: #fff; box-shadow: var(--theme-glow-box-hover); font-weight: 700; }

/* ==================== WORLD CLOCK ==================== */
.world-clock-container { display: flex; justify-content: space-between; padding: 10px 0; }
.clock-item { text-align: center; }
.clock-label { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.5px; }
.clock-time { font-size: 1.1rem; font-weight: 700; }
.clock-item:first-child .clock-label, .clock-item:first-child .clock-time { color: #0056b3; }
.clock-item:last-child .clock-label, .clock-item:last-child .clock-time { color: var(--theme-dashboard-red); }
.glowing-separator {
    height: 2px; background: linear-gradient(90deg, transparent 0%, rgba(var(--theme-accent),0.3) 20%, rgba(var(--theme-accent),0.6) 50%, rgba(var(--theme-accent),0.3) 80%, transparent 100%);
    margin: 10px 0;
}

/* ==================== TASKS ==================== */
.task-list { list-style: none; overflow-y: auto; flex: 1; padding-right: 4px; min-height: 0; }
.task-item {
    display: flex; align-items: center; padding: 10px; margin-bottom: 8px;
    background: rgba(255,255,255,0.7); border-radius: 6px; cursor: pointer;
    transition: var(--transition-normal); border: 1px solid transparent;
}
.task-item:hover { border: 1px solid var(--theme-accent); box-shadow: var(--theme-glow-box-hover); }
.task-item.completed { opacity: 0.5; }
.task-item.completed span { text-decoration: line-through; }
.checkbox {
    width: 16px; height: 16px; border: 2px solid var(--text-light); border-radius: 2px;
    margin-right: 8px; display: flex; align-items: center; justify-content: center;
}
.task-item.completed .checkbox { background: var(--theme-accent); border-color: var(--theme-accent); }
.task-item.completed .checkbox::after { content: '✔'; color: #fff; font-size: 8px; }

/* ==================== PLACEHOLDER ITEMS ==================== */
.placeholder-items {
    display: flex; flex-direction: column; gap: 10px; margin-top: 12px; flex: 1;
}
.placeholder-item {
    display: flex; justify-content: space-between; align-items: center; padding: 10px 12px;
    background: rgba(255,255,255,0.8); border-radius: 5px;
    border: 1px solid rgba(var(--theme-accent),0.1); transition: all var(--transition-normal);
    min-height: 50px;
}
.placeholder-item:hover { box-shadow: var(--theme-glow-box-hover); }
.placeholder-label { font-size: 0.85rem; color: var(--text-dark); font-weight: 500; }
.placeholder-price { font-weight: 600; color: var(--theme-accent); font-size: 1rem; transition: all var(--transition-normal); }
.placeholder-items.blurred .placeholder-price { filter: blur(var(--blur-amount)); user-select: none; cursor: default; }
.placeholder-items.blurred .placeholder-label { filter: none; }
.placeholder-items:not(.blurred) .placeholder-price { filter: blur(0); }

/* ==================== MY CALCULATIONS BUTTON ==================== */
.calc-col { display: flex; flex-direction: column; }
.calc-col .unblur-button { margin-top: auto; align-self: center; padding: 6px 12px; }