/* Caplengo - Custom styles (complements Tailwind) */

/* Remove default link underlines in nav */
a.no-underline { text-decoration: none; }

/* Mood buttons */
.mood-btn {
    font-size: 1.5rem;
    padding: 0.25rem 0.5rem;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    border: 2px solid transparent;
    background: none;
    transition: transform 0.15s, border-color 0.15s;
}

.mood-btn:hover {
    transform: scale(1.1);
}

.mood-btn.active {
    transform: scale(1.2);
    border-color: #2563eb;
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.25);
}

/* Smooth transitions for task completion */
.task-completed {
    opacity: 0.6;
    text-decoration: line-through;
}

/* Custom modal overlay (no Bootstrap) */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}
