/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/
/* ========================
   Dashboard Tasks Styling
======================== */

.dashboard-tasks {
    display: flex;
    gap: 30px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.task-group {
    flex: 1;
    min-width: 280px; 
}

.task-group h3 {
    text-align: center;
    margin-bottom: 10px;
    font-size: 1.2em;
    color: #333;
    border-bottom: 2px solid #ddd;
    padding-bottom: 5px;
}

.task-group ul {
    list-style: none;
    padding: 0;
    max-height: 500px; 
    overflow-y: auto;
}

.task-card {
    border: 1px solid #ddd;
    padding: 10px;
    margin-bottom: 8px;
    border-radius: 5px;
    box-shadow: 1px 1px 3px rgba(0,0,0,0.1);
    background: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.task-card:hover {
    transform: translateY(-2px);
    box-shadow: 2px 4px 8px rgba(0,0,0,0.15);
}

.task-card.to-do { color: #87909e; }
.task-card.in-progress { color: #3E63DD; }
.task-card.review { color: #FFA500; }

@media only screen and (max-width: 48em) {
    .dashboard-tasks {
        flex-direction: column;
        gap: 20px;
    }
}


@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/


}