.lifeos-pomodoro, .lifeos-checklist {
    background: #f9f9f9;
    border: 1px solid #ddd;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
    font-family: sans-serif;
}
.lifeos-pomodoro .timer-display {
    font-size: 3em;
    font-weight: bold;
    text-align: center;
}
.lifeos-pomodoro .timer-controls {
    text-align: center;
    margin: 15px 0;
}
.lifeos-pomodoro .timer-controls button {
    padding: 8px 20px;
    margin: 0 5px;
    cursor: pointer;
}
.lifeos-pomodoro .settings {
    margin-top: 15px;
}
.lifeos-pomodoro .settings input[type="number"] {
    width: 60px;
}
.lifeos-checklist .checklist-items {
    list-style: none;
    padding: 0;
}
.lifeos-checklist .checklist-items li {
    display: flex;
    align-items: center;
    padding: 5px 0;
    border-bottom: 1px solid #eee;
}
.lifeos-checklist .checklist-items li.checked .item-text {
    text-decoration: line-through;
    opacity: 0.6;
}
.lifeos-checklist .checklist-items li button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2em;
    margin-left: 10px;
}
.lifeos-checklist .checklist-items li .toggle-check {
    margin-left: auto;
}
.lifeos-checklist .add-item {
    margin: 10px 0;
}
.lifeos-checklist .progress-bar {
    background: #e0e0e0;
    height: 8px;
    border-radius: 4px;
    margin-top: 5px;
}
.lifeos-checklist .progress-bar span {
    display: block;
    height: 100%;
    background: #4caf50;
    border-radius: 4px;
}
/* ===== Pomodoro Styles ===== */

/* Base */
.lifeos-pomodoro-wrapper {
    max-width: 800px;
    margin: 20px auto;
}

.lifeos-pomodoro {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.lifeos-pomodoro .timer-display {
    font-size: 4em;
    font-weight: 700;
    text-align: center;
    padding: 20px;
    border-radius: 12px;
    border: 2px solid #4CAF50;
    background: #fafafa;
    font-family: 'Courier New', monospace;
    letter-spacing: 2px;
}

.lifeos-pomodoro .timer-mode {
    text-align: center;
    font-size: 1.2em;
    margin-top: 5px;
    color: #666;
}

.lifeos-pomodoro .timer-controls {
    text-align: center;
    margin: 20px 0;
}
.lifeos-pomodoro .timer-controls button {
    padding: 10px 25px;
    margin: 0 8px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
    font-size: 1em;
}
.lifeos-pomodoro .timer-controls .start-btn {
    background: #4CAF50;
    color: #fff;
}
.lifeos-pomodoro .timer-controls .pause-btn {
    background: #FF9800;
    color: #fff;
}
.lifeos-pomodoro .timer-controls .stop-btn {
    background: #f44336;
    color: #fff;
}
.lifeos-pomodoro .timer-controls .reset-btn {
    background: #9E9E9E;
    color: #fff;
}
.lifeos-pomodoro .timer-controls button:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.lifeos-pomodoro .session-info {
    text-align: center;
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #333;
}
.lifeos-pomodoro .session-info .session-count {
    font-weight: 700;
    color: #4CAF50;
}

/* Settings */
.lifeos-pomodoro .settings {
    background: #f5f5f5;
    border-radius: 12px;
    padding: 15px;
    margin: 15px 0;
}
.lifeos-pomodoro .settings h4 {
    margin-top: 0;
}
.lifeos-pomodoro .settings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
}
.lifeos-pomodoro .settings-grid label {
    display: flex;
    flex-direction: column;
    font-size: 0.9em;
}
.lifeos-pomodoro .settings-grid input {
    width: 80px;
    padding: 5px;
    border-radius: 6px;
    border: 1px solid #ccc;
}
.lifeos-pomodoro .save-settings {
    margin-top: 10px;
    background: #2196F3;
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
}

/* Records */
.lifeos-pomodoro .records {
    margin: 20px 0;
}
.lifeos-pomodoro .records-table-wrapper {
    max-height: 200px;
    overflow-y: auto;
}
.lifeos-pomodoro .records-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95em;
}
.lifeos-pomodoro .records-table th {
    background: #e0e0e0;
    padding: 8px;
    text-align: left;
}
.lifeos-pomodoro .records-table td {
    padding: 6px 8px;
    border-bottom: 1px solid #eee;
}
.lifeos-pomodoro .records-total {
    margin-top: 10px;
    font-size: 1.1em;
}

/* Chart */
.lifeos-pomodoro .chart-container {
    margin-top: 20px;
}
.lifeos-pomodoro .chart-controls {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}
.lifeos-pomodoro .chart-controls button {
    background: #e0e0e0;
    border: none;
    padding: 5px 15px;
    border-radius: 15px;
    cursor: pointer;
    transition: 0.2s;
}
.lifeos-pomodoro .chart-controls button.active {
    background: #4CAF50;
    color: #fff;
}
.lifeos-pomodoro #pomodoro-chart {
    max-width: 100%;
}

/* ===== STYLE: CLASSY (luxury) ===== */
.lifeos-pomodoro-wrapper.classy .lifeos-pomodoro {
    background: linear-gradient(145deg, #f8f4f0, #ede8e2);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    border: 1px solid #d4c9b8;
}
.lifeos-pomodoro-wrapper.classy .timer-display {
    background: #fff8f0;
    border-color: #b8966a;
    color: #4a3728;
    font-family: 'Georgia', serif;
    letter-spacing: 1px;
    box-shadow: inset 0 2px 8px rgba(0,0,0,0.05);
}
.lifeos-pomodoro-wrapper.classy .timer-controls .start-btn {
    background: #b8966a;
}
.lifeos-pomodoro-wrapper.classy .timer-controls .pause-btn {
    background: #c49a6c;
}
.lifeos-pomodoro-wrapper.classy .timer-controls .stop-btn {
    background: #a05252;
}
.lifeos-pomodoro-wrapper.classy .timer-controls .reset-btn {
    background: #a09b94;
}
.lifeos-pomodoro-wrapper.classy .settings {
    background: #ede8e0;
}
.lifeos-pomodoro-wrapper.classy .save-settings {
    background: #b8966a;
}
.lifeos-pomodoro-wrapper.classy .records-table th {
    background: #d4c9b8;
    color: #3a2a1a;
}
.lifeos-pomodoro-wrapper.classy .session-info .session-count {
    color: #b8966a;
}

/* ===== STYLE: CREATIVE (bright) ===== */
.lifeos-pomodoro-wrapper.creative .lifeos-pomodoro {
    background: linear-gradient(135deg, #fff5f5, #f0f8ff);
    box-shadow: 0 4px 20px rgba(255, 107, 107, 0.15);
    border: 2px solid #ff6b6b;
}
.lifeos-pomodoro-wrapper.creative .timer-display {
    background: #ffffff;
    border-color: #ff6b6b;
    color: #2d3436;
    font-family: 'Comic Sans MS', cursive, sans-serif;
    box-shadow: 0 0 20px rgba(255, 107, 107, 0.2);
}
.lifeos-pomodoro-wrapper.creative .timer-controls .start-btn {
    background: #ff6b6b;
    color: #fff;
    box-shadow: 0 4px 10px rgba(255, 107, 107, 0.3);
}
.lifeos-pomodoro-wrapper.creative .timer-controls .pause-btn {
    background: #fdcb6e;
    color: #2d3436;
}
.lifeos-pomodoro-wrapper.creative .timer-controls .stop-btn {
    background: #e17055;
}
.lifeos-pomodoro-wrapper.creative .timer-controls .reset-btn {
    background: #74b9ff;
}
.lifeos-pomodoro-wrapper.creative .settings {
    background: #dfe6e9;
    border-radius: 20px;
}
.lifeos-pomodoro-wrapper.creative .save-settings {
    background: #00b894;
}
.lifeos-pomodoro-wrapper.creative .records-table th {
    background: #fd79a8;
    color: #fff;
}
.lifeos-pomodoro-wrapper.creative .session-info .session-count {
    color: #e17055;
}
.lifeos-pomodoro-wrapper.creative .chart-controls button.active {
    background: #ff6b6b;
}
/* Theme Selector */
.lifeos-theme-selector {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}
.lifeos-theme-selector .theme-buttons {
    display: flex;
    gap: 10px;
}
.lifeos-theme-selector .theme-btn {
    padding: 8px 20px;
    border: 2px solid #ccc;
    background: #fff;
    border-radius: 25px;
    cursor: pointer;
    transition: 0.2s;
}
.lifeos-theme-selector .theme-btn.active {
    border-color: #4CAF50;
    background: #4CAF50;
    color: #fff;
}
.lifeos-theme-selector .notification-toggle {
    margin-top: 15px;
}