    @charset "UTF-8";
    /* Do One Thing - Chore Wheel Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, 'Segoe UI', Roboto, sans-serif;
    font-family: "kit-rounded", sans-serif;
    font-size: larger;
    font-weight: 200;
    font-style: normal;
    background: black;
    min-height: 100vh;
    padding: 20px;
    color: white;
}

.container {
    max-width: 500px;
    margin: 0 auto;
}

h1 {
    font-family: "confiteria-script", sans-serif;
    font-weight: 900;
    font-style: normal;
    text-align: center;
    color: white;
    font-size: 3em;
    margin-bottom: 30px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

h2 {
    font-family: "kit-rounded", sans-serif;
    /* font-size: larger; */
    font-weight: 200;
    font-style: normal;
    color: white;
    text-transform: uppercase;
    font-size: 1em;
    word-spacing: 110%;

}

/* Main Wheel Section */
.wheel-container {
    background-image: url("images/20250917_1840_Jewel Tone Swirl_simple_compose_01k5d0sn7sfxxadxtthbk7ra05.png");
    width: 100%;
    height: 100%;
    border-radius: 20px;
    align-self: center;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    margin-bottom: 30px;
    background-size: cover;
}

.current-task {
    text-align: center;
    margin-bottom: 30px;
}

.task-display {
    background: black;
    opacity: 80%;
    border-radius: 15px;
    padding: 30px 20px;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.task-display.has-task {
    background: black;
    opacity: 80%;
    border-color: #teal;
}

.task-text {
    font-family: "kit-rounded", sans-serif;
    font-size: 1em;
    font-weight: 200;
    color: teal;
    text-align: center;
}

/* Buttons */
.button {
    font-family: "confiteria-script", sans-serif;
    font-weight: 500;
    font-style: normal;
    letter-spacing: .1ch;
    background: black;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: .85em;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 10px 10px 0;
    display: inline-block;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.button:active {
    transform: translateY(0);
}

.button.secondary {
    background: teal;
}

.button.success {
    background: black;
}

.button.danger {
    background: #dc3545;
}

.button-group {
    text-align: center;
    margin-bottom: 30px;
}

/* Task Management Section */
.task-management {
    background-image: url("images/20250917_1840_Jewel Tone Swirl_simple_compose_01k5d0sn7sfxxadxtthbk7ra05.png");
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    margin-bottom: 30px;
}

.task-list {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 20px;
}

.task-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    padding-right: 20px;
    padding-bottom: 5px;
    padding-left: 25px;
    border-bottom: 1px solid #eee;
    transition: background-color 0.2s;
}

.task-item:hover {
    background: black;
    opacity: 80%;
}

.task-item:last-child {
    border-bottom: none;
}

.remove-task {
    font-family: "kit-rounded", sans-serif;
    font-size: larger;
    font-weight: 600;
    background: none;
    color: white;
    border: none;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8em;
    cursor: pointer;
    text-shadow:; white
        font-family: "kit-rounded", sans-serif;
    font-size: larger;
    font-weight: 200;
}

.add-task-form {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.add-task-input {
    color: black;
    flex: 1;
    padding: 12px;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    font-size: 1em;
}

.add-task-input:focus {
    outline: none;
    border-color: #667eea;
}

/* History & Tracking Section */
.history {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.history h2 {
    margin-bottom: 20px;
    color: #333;
}

.history-list {
    max-height: 200px;
    overflow-y: auto;
}

.history-item {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.history-item:last-child {
    border-bottom: none;
}

.date {
    font-size: 0.9em;
    color: #666;
}

/* Tabs */
.tabs {
    display: flex;
    margin-bottom: 20px;
    border-bottom: 2px solid #eee;
}

.tab {
    flex: 1;
    padding: 12px;
    text-align: center;
    cursor: pointer;
    border: none;
    background: none;
    font-size: 1em;
    color: #666;
    transition: all 0.3s ease;
}

.tab.active {
    color: #667eea;
    border-bottom: 2px solid #667eea;
    font-weight: 600;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Checklist View */
.checklist-item {
    display: flex;
    align-items: center;
    padding: 12px;
    border-bottom: 1px solid #eee;
    transition: background-color 0.2s;
}

.checklist-item:hover {
    background-color: #f8f9fa;
}

.checklist-item:last-child {
    border-bottom: none;
}

.checklist-checkbox {
    width: 20px;
    height: 20px;
    margin-right: 15px;
    cursor: pointer;
    accent-color: #667eea;
}

.checklist-text {
    flex: 1;
}

.completed-count {
    font-size: 0.9em;
    color: #28a745;
    font-weight: 600;
}

/* History View Controls */
.view-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.month-selector {
    padding: 8px 12px;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    font-size: 0.9em;
}

/* Statistics */
.stats {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
}

.stats-item {
    display: inline-block;
    margin: 0 15px;
}

.stats-number {
    display: block;
    font-size: 1.5em;
    font-weight: bold;
    color: #667eea;
}

/* Animations */
.spinning {
    animation: spin 2s ease-out;
}

@keyframes spin {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.05); }
    100% { transform: rotate(360deg) scale(1); }
}

/* Mobile Responsive */
@media (max-width: 600px) {
    body {
        padding: 10px;
    }
    
    h1 {
        font-size: 2em;
    }
    
    .wheel-container, .task-management, .history {
        padding: 20px;
    }
    
    .add-task-form {
        flex-direction: column;
    }
    
    .stats-item {
        display: block;
        margin: 10px 0;
    }
    
    .view-controls {
        flex-direction: column;
        align-items: stretch;
    }
}