﻿/* Progress Tracker Styles */
.progress-tracker-container {
    position: fixed;
    width: 300px;
    background: #FFFFFF;
    border: 1px solid #A38C7C;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 100000;
    overflow: hidden;
}

.progress-tracker-header {
    padding: 10px 15px;
    background: #EFECE6;
    border-bottom: 1px solid #A38C7C;
    font-family: 'Ysabeau Infant Medium';
    font-size: 14px;
    color: #3F2E21;
    display: flex;
    align-items: center;
    cursor: grab;
}

.progress-tracker-icon {
    width: 11px;
    height: 11px;
    margin-right: 10px;
    margin-left: 0px;
}

.progress-tracker-body {
    padding: 15px;
}

.progress-tracker-bar {
    height: 20px;
    background: #e0e0e0;
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
}

.progress-tracker-bar-inner {
    height: 100%;
    width: 0%;
    background: #C1DAB4;
    transition: width 0.3s ease;
}

    .progress-tracker-bar-inner.complete {
        background: #B1D49A;
    }

.progress-tracker-text {
    text-align: center;
    font-family: sans-serif;
    font-size: 13px;
    font-weight: bold;
    color: #3F2E21;
}
