/* Basic Watercolor Theme */
body {
    background: #fdfcfa; /* Off-white paper texture */
    font-family: 'Georgia', serif;
}

.navbar-brand,
h1, h2, h3, .card-header {
    font-family: 'Brush Script MT', 'cursive';
    font-weight: bold;
    color: #4a47a3; /* Deep indigo */
}

h1 {
    font-size: 4rem;
}

.container {
    padding-top: 20px;
}

/* Watercolor background for panels */
.panel-watercolor {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 25px;
    margin-bottom: 25px;
    background-image: 
        linear-gradient(120deg, #a1c4fd 0%, #c2e9fb 100%),
        linear-gradient(120deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
    background-blend-mode: screen;
    border-left: 5px solid #4a47a3;
}

.admin-panel-watercolor {
    background-image: 
        linear-gradient(120deg, #fbc2eb 0%, #a6c1ee 100%),
        linear-gradient(120deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
    background-blend-mode: screen;
    border-left: 5px solid #79287a;
}

.card {
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.card-header {
    background-color: transparent;
    border-bottom: 2px dashed #d1c4e9; /* Light purple */
    font-size: 2.2rem;
}

/* Button Styling */
.btn-primary {
    background-color: #7e57c2; /* Amethyst */
    border-color: #7e57c2;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #5e35b1;
    border-color: #5e35b1;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #d1c4e9; /* Light purple */
    border-color: #d1c4e9;
    color: #4a47a3;
    font-weight: bold;
}

.btn-warning, .btn-danger, .btn-info {
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Table styling */
.table {
    border: 1px solid #e0e0e0;
}

.table thead {
    background-color: #f5f5f5;
    color: #4a47a3;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(237, 231, 246, 0.5); /* Very light purple wash */
}

/* Task Status */
.task-done {
    text-decoration: line-through;
    color: #9e9e9e;
}

.task-incomplete {
    color: #d32f2f;
    font-weight: bold;
}




/* ADD THESE STYLES TO THE END OF YOUR style.css FILE
*/

/* Floating Action Button (FAB) for Mobile */
.fab {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 24px;
    line-height: 1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 1050; /* Above most content */
}

/* Make table responsive on small screens */
.table-responsive {
    border: none;
}

/* Watercolor Modal Header */
.modal-header-watercolor {
    background-image: linear-gradient(120deg, #a1c4fd 0%, #c2e9fb 100%);
    border-bottom: 2px dashed #4a47a3;
}

.modal-header-watercolor .modal-title {
    font-family: 'Brush Script MT', 'cursive';
    font-weight: bold;
    color: #4a47a3;
    font-size: 2.2rem;
}

/* Watercolor Modal Tabs */
.nav-tabs-watercolor {
    border-bottom-color: #d1c4e9;
}

.nav-tabs-watercolor .nav-link {
    color: #5e35b1;
}

.nav-tabs-watercolor .nav-link.active {
    color: #4a47a3;
    background-color: #f0ebf9;
    border-color: #d1c4e9 #d1c4e9 #f0ebf9;
    font-weight: bold;
}







/* ADD THESE STYLES TO THE END OF YOUR style.css FILE
*/

/* Admin To-Do Card List */
.admin-todo-list .list-group-item {
    background-color: transparent;
    border-bottom: 1px solid #e0e0e0;
}
.admin-todo-list .list-group-item:last-child {
    border-bottom: none;
}

.admin-user-tag {
    font-size: 0.9rem;
    font-weight: bold;
    color: #79287a; /* Admin theme color */
    background-color: #fce4ec;
    border-radius: 4px;
    padding: 2px 8px;
    display: inline-block;
}

/* Admin Routine Card List */
.admin-routine-list .list-group-item {
     background-color: transparent;
    border-bottom: 1px solid #e0e0e0;
    padding: 1rem;
}
.admin-routine-list .list-group-item:last-child {
    border-bottom: none;
}

.routine-task {
    font-size: 1.1rem;
    font-weight: 500;
}

.routine-time {
    font-size: 0.95rem;
    color: #333;
}
