.chore-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 0;
}

.chore-item {
    background-color: rgb(252, 248, 234);
    border-radius: 10px;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chore-left {
    display: flex;
    align-items: center;
}

.chore-icon {
    color: #4E4436;
    font-size: 1.4em;
    margin-right: 0.75rem;
    width: 24px;
    text-align: center;
}

.chore-text {
    display: flex;
    flex-direction: column;
}

.chore-name {
    color: #4E4436;
    font-size: 1.1em;
    font-weight: bold;
}

.chore-frequency {
    color: #887B63;
    font-size: 0.9em;
}

.chore-reward {
    color: #4E4436;
    font-weight: bold;
    font-size: 1.1em;
}

.chore-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.summary-item {
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 120px;
}

.summary-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: #4E4436;
    margin-bottom: 0.25rem;
}

.summary-label {
    font-size: 0.9rem;
    color: #887B63;
}

.dial-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
    width: 120px;
    margin: 0 auto;
    padding: 10px;
}

.dial {
    width: 120px;
    height: 120px;
}

.dial-background {
    stroke: #4E4436;
    stroke-width: 4;
}

.dial-progress {
    stroke: #28A745; /* Changed from #FF8C00 to green */
    stroke-width: 6;
    transition: stroke-dasharray 0.3s ease;
}

.dial-text {
    font-size: 1.5rem;
    font-weight: bold;
    fill: #4E4436;
}

.dial-label {
    font-size: 0.9rem;
    fill: #887B63;
}

.dial-dot {
    transition: cx 0.3s ease, cy 0.3s ease;
    fill: #28A745; /* Changed from #FF8C00 to green */
}

.suggest-chore-container {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
    padding: 0;
}

.suggest-chore-button {
    background-color: #28A745; /* Changed from #FF8C00 to green */
    color: white;
    font-weight: bold;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.suggest-chore-button:hover {
    background-color: #218838; /* Adjusted hover color */
}

.suggest-chore-button:active {
    background-color: #1E7E34; /* Adjusted active color */
}

.chore-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
}

.chore-status {
    font-size: 0.8em;
    padding: 2px 6px;
    border-radius: 10px;
    margin-bottom: 4px;
}

.chore-status.to-do {
    background-color: #FFE5B4;
    color: #FF8C00;
}

.chore-status.approved {
    background-color: #D4EDDA;
    color: #155724;
}

.chore-status.to-be-approved {
    background-color: #CCE5FF;
    color: #004085;
}

.approve-chore-button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8em;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 5px;
}

.approve-chore-button:hover {
    background-color: #45a049;
}

.approve-chore-button:active {
    background-color: #3e8e41;
}

.chore-filter-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
    background-color: rgb(251, 236, 200);
    border-radius: 10px;
    padding: 4px;
    gap: 8px;
}

.filter-button {
    background-color: transparent;
    color: #4E4436;
    border: none;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    border-radius: 8px;
    white-space: nowrap;
}

.filter-button.active {
    background-color: rgb(252, 248, 234);
    color: #4E4436;
}

.filter-button:hover:not(.active) {
    background-color: rgba(252, 248, 234, 0.5);
}