.today_container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

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

.today_title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 600;
}

.today_btn {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border: none;
    padding: 12px 18px;
    border-radius: var(--radius);
    cursor: pointer;
    display: flex;
    gap: 8px;
    align-items: center;
}

.today_progress {
    background: var(--card-bg);
    padding: 15px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 20px;
}

.today_progress-bar {
    height: 8px;
    background: #eee;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 8px;
}

.today_progress-fill {
    height: 100%;
    width: 0%;
    background: var(--primary-color);
    transition: 0.3s;
}

.today_section {
    margin-bottom: 25px;
}

.today_section h3{
    margin-bottom: 10px;
}

.today_tasks {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tasks_task-card {
    position: relative;
}

.tasks_add-plan-btn {
    position: absolute;
    top: 15px;
    right: 15px;

    width: 55px;
    height: 55px;

    border: none;
    border-radius: 50%;

    background: rgba(0, 136, 204, 0.1);
    color: var(--primary-color);

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
    transition: var(--transition);

    z-index: 5;
}

.tasks_add-plan-btn:hover {
    background: var(--primary-color);
    color: white;

    transform: scale(1.08);
}