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

/* Dark Mode (Default) */
:root {
    --bg: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --bg-tertiary: #262626;
    --bg-input: #1f1f1f;
    --text: #e5e5e5;
    --text-secondary: #a0a0a0;
    --text-tertiary: #737373;
    --border: #2a2a2a;
    --border-light: #3a3a3a;
    --accent: #6366f1;
    --accent-hover: #818cf8;
    --accent-light: rgba(99, 102, 241, 0.1);
    --accent-glow: rgba(99, 102, 241, 0.2);
    --success: #22c55e;
    --success-light: rgba(34, 197, 94, 0.1);
    --error: #ef4444;
    --error-light: rgba(239, 68, 68, 0.1);
    --warning: #f59e0b;
    --warning-light: rgba(245, 158, 11, 0.1);
    --shadow: rgba(0, 0, 0, 0.3);
    --shadow-lg: rgba(0, 0, 0, 0.5);
}

/* Light Mode */
[data-theme="light"] {
    --bg: #ffffff;
    --bg-secondary: #f5f5f5;
    --bg-tertiary: #e5e5e5;
    --bg-input: #fafafa;
    --text: #171717;
    --text-secondary: #525252;
    --text-tertiary: #737373;
    --border: #e5e5e5;
    --border-light: #d4d4d4;
    --accent: #4f46e5;
    --accent-hover: #6366f1;
    --accent-light: rgba(79, 70, 229, 0.1);
    --accent-glow: rgba(79, 70, 229, 0.15);
    --success: #16a34a;
    --success-light: rgba(22, 163, 74, 0.1);
    --error: #dc2626;
    --error-light: rgba(220, 38, 38, 0.1);
    --warning: #d97706;
    --warning-light: rgba(217, 119, 6, 0.1);
    --shadow: rgba(0, 0, 0, 0.05);
    --shadow-lg: rgba(0, 0, 0, 0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--bg);
    min-height: 100vh;
    padding: 0;
    color: var(--text);
    line-height: 1.6;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--bg);
    min-height: 100vh;
    padding: 0;
}

/* Header */
.header {
    background: var(--bg-secondary);
    color: var(--text);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border);
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-content {
    flex: 1;
}

.header-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

h1 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    letter-spacing: -0.02em;
    color: var(--text);
}

.subtitle {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 400;
}

/* Theme Toggle */
.theme-toggle {
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    color: var(--text);
    font-size: 1.25rem;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.theme-toggle:hover {
    background: var(--bg-tertiary);
    border-color: var(--accent);
}

/* Help Button */
.help-btn {
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    cursor: pointer;
    color: var(--text);
    font-size: 1.25rem;
    font-weight: 600;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.help-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--accent);
    color: var(--accent);
    transform: scale(1.1);
}

/* Quick Actions */
.quick-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: 8px;
    border: 1px solid var(--border);
    box-shadow: 0 2px 4px var(--shadow);
    height: 100%;
    align-content: center;
}

.quick-btn {
    padding: 1.25rem 1.5rem;
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 80px;
}

.quick-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--accent);
    transform: translateY(-1px);
    box-shadow: 0 2px 4px var(--shadow);
}

.quick-btn.active {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
    box-shadow: 0 2px 6px var(--accent-glow);
}

/* Content */
.content {
    padding: 2rem;
}

/* Top Section: Info and Calendar Side by Side */
.top-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: stretch;
    margin-bottom: 2rem;
}

.left-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 0;
    justify-content: flex-start;
    height: 100%;
}

.right-column {
    flex-shrink: 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.info-box {
    background: var(--bg-secondary);
    padding: 1.25rem;
    border-radius: 8px;
    border-left: 3px solid var(--accent);
    font-size: 0.875rem;
    border: 1px solid var(--border);
    box-shadow: 0 2px 4px var(--shadow);
}

.info-box strong {
    color: var(--accent);
    display: block;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.info-box ul {
    margin: 0.5rem 0 0 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
    list-style: none;
}

.info-box ul li {
    position: relative;
    padding-left: 0.5rem;
    margin-bottom: 0.4rem;
    line-height: 1.5;
}

.info-box ul li::before {
    content: "•";
    position: absolute;
    left: -1rem;
    color: var(--accent);
    font-weight: bold;
}

.info-box code {
    background: var(--bg-input);
    padding: 0.15rem 0.4rem;
    border-radius: 3px;
    font-size: 0.85em;
    font-family: 'Monaco', 'Courier New', monospace;
    color: var(--accent);
}

.info-box p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Last Save Indicator */
.last-save {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin-left: 1rem;
}

.last-save.saved {
    color: var(--success);
}

/* Section */
.section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: 8px;
    border: 1px solid var(--border);
    transition: all 0.2s;
    box-shadow: 0 2px 4px var(--shadow);
}

.section:hover {
    border-color: var(--border-light);
    box-shadow: 0 4px 8px var(--shadow-lg);
}

.section-title {
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.section-title::before {
    content: "";
    width: 3px;
    height: 1.25rem;
    background: var(--accent);
    border-radius: 2px;
}

.section-priority-high {
    border-left: 3px solid var(--accent);
}

.section-priority-medium {
    border-left: 3px solid var(--warning);
}

.section-priority-low {
    border-left: 3px solid var(--text-tertiary);
}

/* Form */
.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text);
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 0.01em;
}

.required::after {
    content: " *";
    color: var(--error);
    font-weight: 600;
}

input[type="number"],
input[type="date"],
input[type="time"],
input[type="text"],
select,
textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 0.95rem;
    transition: all 0.2s;
    background: var(--bg-input);
    color: var(--text);
    font-family: inherit;
}

input::placeholder,
textarea::placeholder {
    color: var(--text-tertiary);
    opacity: 0.6;
}

select option {
    background: var(--bg-input);
    color: var(--text);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

input:hover,
select:hover,
textarea:hover {
    border-color: var(--border-light);
}

/* Validation States */
input.valid,
select.valid,
textarea.valid {
    border-color: var(--success);
}

input.invalid,
select.invalid,
textarea.invalid {
    border-color: var(--error);
}

.validation-message {
    font-size: 0.75rem;
    margin-top: 0.25rem;
    color: var(--error);
}

.validation-message.valid {
    color: var(--success);
}

/* Range Input */
.range-input {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.range-input input[type="range"] {
    flex: 1;
    height: 6px;
    -webkit-appearance: none;
    appearance: none;
    background: var(--border);
    border-radius: 3px;
    outline: none;
}

.range-input input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background: var(--accent);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 0 0 2px var(--bg-secondary), 0 0 8px var(--accent-glow);
}

.range-input input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    background: var(--accent-hover);
}

.range-input input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: var(--accent);
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid var(--bg-secondary);
    transition: all 0.2s;
}

.range-value {
    min-width: 2.5rem;
    text-align: center;
    font-weight: 600;
    color: var(--accent);
    font-size: 0.95rem;
    background: var(--accent-light);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    border: 1px solid var(--border);
}

/* Checkbox & Tags */
.checkbox-group,
.tag-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.checkbox-item,
.tag-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.875rem;
}

.checkbox-item:hover,
.tag-item:hover {
    border-color: var(--accent);
    background: var(--bg-tertiary);
}

.checkbox-item input[type="checkbox"],
.tag-item input[type="checkbox"] {
    width: auto;
    margin: 0;
    cursor: pointer;
}

.tag-item input[type="checkbox"]:checked + label {
    color: var(--accent);
    font-weight: 500;
}

.checkbox-item input[type="checkbox"]:checked ~ label,
.tag-item input[type="checkbox"]:checked {
    border-color: var(--accent);
    background: var(--accent-light);
}

.tag-item label {
    margin: 0;
    cursor: pointer;
    user-select: none;
}

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: var(--accent);
    color: white;
    border: none;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px var(--accent-glow);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: var(--bg-input);
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--bg-tertiary);
    border-color: var(--accent);
}

.btn-group {
    display: flex;
    gap: 0.75rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

/* Alerts */
.alert {
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: none;
    font-size: 0.9rem;
    border-left: 3px solid;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert-success {
    background: var(--success-light);
    color: var(--success);
    border-color: var(--success);
}

.alert-error {
    background: var(--error-light);
    color: var(--error);
    border-color: var(--error);
}

.alert-info {
    background: var(--accent-light);
    color: var(--accent);
    border-color: var(--accent);
}

/* Two Columns */
.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.help-text {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 0.375rem;
    font-style: italic;
    opacity: 0.8;
}

/* Tooltip */
.tooltip {
    position: relative;
    display: inline-block;
    cursor: help;
}

.tooltip .tooltip-icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--accent-light);
    color: var(--accent);
    text-align: center;
    line-height: 16px;
    font-size: 0.75rem;
    margin-left: 0.5rem;
    vertical-align: middle;
}

.tooltip .tooltip-text {
    visibility: hidden;
    width: 200px;
    background: var(--bg-tertiary);
    color: var(--text);
    text-align: center;
    border-radius: 6px;
    padding: 0.5rem;
    position: absolute;
    z-index: 1000;
    bottom: 125%;
    left: 50%;
    margin-left: -100px;
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 0.8rem;
    border: 1px solid var(--border);
    box-shadow: 0 4px 12px var(--shadow);
}

.tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

/* Tabs */
.tabs-container {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border);
}

.tab-btn {
    padding: 0.75rem 1.25rem;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: var(--text-secondary);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    font-size: 0.9rem;
    position: relative;
}

.tab-btn:hover {
    color: var(--text);
    background: var(--bg-input);
    border-radius: 6px 6px 0 0;
}

.tab-btn.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
    background: var(--bg-secondary);
}

.tab-btn .badge {
    position: absolute;
    top: 0.25rem;
    right: 0.25rem;
    background: var(--accent);
    color: white;
    border-radius: 10px;
    min-width: 1.25rem;
    height: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0 0.35rem;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Progress Bar */
.progress-bar {
    height: 4px;
    background: var(--border);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-fill {
    height: 100%;
    background: var(--accent);
    transition: width 0.3s ease;
}

.progress-text {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

/* Calendar - More Discreet and Compact */
#filledDaysSection {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1rem 1rem 0.75rem 1rem;
    width: 100%;
    flex-shrink: 0;
    box-shadow: 0 2px 4px var(--shadow);
    margin-bottom: 0;
}

#filledDaysSection .section-title {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    margin-top: 0;
}

#filledDaysInfo {
    font-size: 0.75rem !important;
    margin-bottom: 0.5rem !important;
}

#filledDaysCalendar {
    margin-top: 0.25rem;
    margin-bottom: 0;
    padding-bottom: 0;
}

.calendar-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    gap: 0.25rem;
}

.calendar-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text);
    flex: 1;
    text-align: center;
}

.calendar-controls {
    display: flex;
    gap: 0.15rem;
    align-items: center;
}

.calendar-btn {
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: 3px;
    color: var(--text);
    font-size: 0.65rem;
    padding: 0.2rem 0.4rem;
    cursor: pointer;
    transition: all 0.2s;
    min-width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--accent);
    color: var(--accent);
}

.calendar-btn-today {
    font-size: 0.6rem;
    padding: 0.2rem 0.5rem;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.15rem;
    margin-bottom: 0;
    padding-bottom: 0;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    font-size: 0.65rem;
    font-weight: 500;
    transition: all 0.2s;
    border: 1px solid transparent;
    background: var(--bg-input);
    color: var(--text-secondary);
    cursor: default;
    min-height: 1.5rem;
    max-height: 1.5rem;
}

.calendar-day.filled {
    background: var(--accent-light);
    color: var(--accent);
    border-color: var(--accent);
    cursor: pointer;
}

.calendar-day.today {
    border-color: var(--accent);
    border-width: 1.5px;
    font-weight: 600;
}

.calendar-day.past {
    cursor: pointer;
}

.calendar-day.filled:hover,
.calendar-day.past:hover {
    background: var(--accent);
    color: white;
    transform: scale(1.08);
}

.calendar-day-header {
    text-align: center;
    font-weight: 600;
    color: var(--accent);
    padding: 0.15rem;
    font-size: 0.65rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.2s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 8px 32px var(--shadow-lg);
    animation: slideIn 0.3s ease;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.modal-header h2 {
    margin: 0;
    font-size: 1.25rem;
    color: var(--text);
    font-weight: 600;
}

.modal-close {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.2s;
}

.modal-close:hover {
    background: var(--bg-tertiary);
    color: var(--text);
}

.modal-body {
    padding: 1.5rem;
    color: var(--text);
}

.modal-body ul {
    margin: 0;
    padding-left: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.8;
    list-style: none;
}

.modal-body ul li {
    position: relative;
    padding-left: 0.5rem;
    margin-bottom: 0.75rem;
}

.modal-body ul li::before {
    content: "•";
    position: absolute;
    left: -1rem;
    color: var(--accent);
    font-weight: bold;
}

.modal-body code {
    background: var(--bg-input);
    padding: 0.15rem 0.4rem;
    border-radius: 3px;
    font-size: 0.85em;
    font-family: 'Monaco', 'Courier New', monospace;
    color: var(--accent);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* Responsive */
@media (max-width: 1024px) {
    .container {
        max-width: 100%;
    }
    
    .header {
        padding: 1.25rem 1.5rem;
    }
    
    .content {
        padding: 1.5rem;
    }
    
    .section {
        padding: 1.25rem;
    }
    
    .top-section {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    #filledDaysSection {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .two-columns {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .header {
        padding: 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    h1 {
        font-size: 1.25rem;
    }
    
    .subtitle {
        font-size: 0.8rem;
    }
    
    .content {
        padding: 1rem;
    }
    
    .top-section {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .left-column {
        width: 100%;
    }
    
    #filledDaysSection {
        width: 100%;
        max-width: 100%;
    }
    
    .section {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .section-title {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }
    
    .form-group {
        margin-bottom: 1.25rem;
    }
    
    .btn-group {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .checkbox-group,
    .tag-group {
        gap: 0.5rem;
    }
    
    .checkbox-item,
    .tag-item {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .tabs-container {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .tab-btn {
        font-size: 0.8rem;
        padding: 0.625rem 1rem;
    }
    
    .quick-actions {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .quick-btn {
        flex: 1;
        min-width: calc(50% - 0.25rem);
    }
}

@media (max-width: 480px) {
    .header {
        padding: 0.875rem 1rem;
    }
    
    h1 {
        font-size: 1.125rem;
    }
    
    .content {
        padding: 0.875rem;
    }
    
    .top-section {
        gap: 0.75rem;
    }
    
    .left-column {
        gap: 0.75rem;
    }
    
    .section {
        padding: 0.875rem;
    }
    
    .quick-actions {
        flex-direction: column;
    }
    
    .quick-btn {
        width: 100%;
        min-width: 100%;
    }
    
    #filledDaysSection {
        padding: 0.5rem;
    }
    
    input[type="number"],
    input[type="date"],
    input[type="time"],
    input[type="text"],
    select,
    textarea {
        padding: 0.625rem 0.875rem;
        font-size: 16px;
    }
}
