:root {
    --cream: #F4F7FA;
    --warm-white: #F4F7FA;
    --beige: #F4F7FA;
    --beige-dark: #e8eff5;
    --slate-blue: #7B93A8;
    --slate-blue-light: #8a9ba8;
    --powder-blue: #b8cdd9;
    --powder-blue-light: #e8eff5;
    --charcoal: #2D3640;
    --text-black: #2D3640;
    --text-gray: #6B7785;
    --border-light: rgba(123, 147, 168, 0.15);
    --border-dark: rgba(123, 147, 168, 0.2);
    --shadow: rgba(0, 0, 0, 0.04);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--cream);
    color: var(--text-black);
    font-size: 17px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    overflow: hidden;
    line-height: 1.5;
}

.app-container {
    max-width: 480px;
    margin: 0 auto;
    height: 100vh;
    background: var(--warm-white);
    display: flex;
    flex-direction: column;
    position: relative;
}

.app-header {
    padding: 16px 16px 12px;
    border-bottom: none;
    background: transparent;
}

.app-header h1 {
    font-family: 'Crimson Pro', serif;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-black);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.current-period {
    font-size: 13px;
    color: var(--text-gray);
    text-transform: none;
    letter-spacing: 0;
    font-weight: 500;
}

.plan-fact-widget {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 16px 16px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.pf-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.pf-item:last-child {
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    padding-left: 8px;
    flex: 0 0 auto;
}

.pf-label {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: var(--text-gray);
    font-weight: 600;
}

.pf-value {
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    color: var(--text-black);
}

.pf-value.plan {
    color: var(--slate-blue);
}

.pf-value.fact {
    color: var(--text-black);
}

.pf-difference {
    font-size: 12px;
    color: #A89B9B;
    font-weight: 600;
}

.view-switcher {
    display: flex;
    gap: 6px;
    padding: 0 16px;
    margin-bottom: 16px;
    justify-content: center;
    align-items: center;
}

.view-btn {
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    color: var(--text-gray);
    font-family: inherit;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: none;
    letter-spacing: 0;
}

.view-btn:hover {
    background: rgba(255, 255, 255, 0.35);
}

.view-btn.active {
    background: var(--slate-blue);
    color: white;
    border: none;
}

.period-nav {
    display: flex;
    gap: 8px;
    padding: 0 16px;
    margin-bottom: 16px;
    align-items: center;
}

.period-btn {
    height: 36px;
    padding: 0 16px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    color: var(--text-black);
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.period-btn.arrow {
    width: 36px;
    padding: 0;
    flex-shrink: 0;
}

.period-btn.today {
    flex: 1;
}

.period-btn:hover {
    background: rgba(255, 255, 255, 0.35);
}

.period-btn:active {
    transform: scale(0.95);
}

.calendar-container {
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.calendar-view {
    display: none;
    flex: 1;
    overflow: hidden;
}

.calendar-view.active {
    display: flex;
    flex-direction: column;
}

/* iOS Week View */
.week-view-ios {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 12px;
    margin: 0 16px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.week-days-header {
    display: grid;
    grid-template-columns: 40px repeat(7, 1fr);
    border-bottom: none;
    background: transparent;
    margin-bottom: 8px;
}

.week-corner-cell {
    background: transparent;
    border-right: none;
}

.week-day-header {
    text-align: center;
    padding: 8px 4px;
    border-right: none;
}

.week-day-header:last-child {
    border-right: none;
}

.week-day-name {
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0;
    color: var(--text-gray);
    margin-bottom: 4px;
}

.week-day-date {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-black);
    font-family: 'Inter', sans-serif;
}

.week-day-date.today {
    background: var(--slate-blue);
    color: white;
    width: 28px;
    height: 28px;
    line-height: 28px;
    margin: 0 auto;
    border-radius: 50%;
}

.week-timeline {
    flex: 1;
    overflow-y: auto;
    display: grid;
    grid-template-columns: 40px repeat(7, 1fr);
    position: relative;
    background: transparent;
}

.timeline-hour {
    padding: 4px 8px 0 0;
    text-align: right;
    font-size: 10px;
    color: var(--text-gray);
    font-weight: 500;
    border-right: none;
    border-bottom: none;
    background: transparent;
    height: 50px;
    font-family: 'Inter', sans-serif;
}

.timeline-cell {
    position: relative;
    height: 50px;
    border-right: none;
    border-bottom: none;
    cursor: pointer;
    transition: background 0.1s;
}

.timeline-cell:hover {
    background: rgba(184, 205, 217, 0.1);
}

.timeline-cell.drag-over {
    background: rgba(74, 95, 111, 0.15);
    border: 2px dashed var(--slate-blue);
}

.event-block-ios {
    position: absolute;
    left: 2px;
    right: 2px;
    background: var(--slate-blue);
    color: white;
    padding: 0.3rem 0.4rem;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 3px;
    cursor: move;
    overflow: hidden;
    z-index: 10;
    border-left: 3px solid var(--charcoal);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.event-block-ios:hover {
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    transform: translateY(-1px);
}

.event-block-ios.expense {
    color: var(--text-black);
}

.event-time-ios {
    font-size: 0.6rem;
    opacity: 0.85;
    margin-bottom: 0.15rem;
    font-weight: 500;
}

.event-name-ios {
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.event-status {
    position: absolute;
    top: 2px;
    right: 3px;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1;
}

.event-status.completed {
    color: #6b7d44;
}

.event-status.cancelled {
    color: #c85a4a;
}

/* Month View - iOS Calendar Style */
.month-view-ios {
    display: flex;
    flex-direction: column;
    padding: 16px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    margin: 0 16px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.month-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0;
    border: none;
}

.month-day-name {
    text-align: center;
    padding: 8px;
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0;
    color: var(--text-gray);
    background: transparent;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.month-day-name:last-child {
    border-right: none;
}

.month-day-cell {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-right: none;
    border-bottom: none;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    border-radius: 8px;
    margin: 2px;
}

.month-day-cell:hover {
    background: rgba(123, 147, 168, 0.1);
}

.month-day-cell.other-month {
    color: var(--text-gray);
    opacity: 0.4;
}

.month-day-cell.today {
    background: var(--slate-blue);
    color: white;
}

.month-day-number {
    font-size: 14px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    margin-bottom: 4px;
}

.month-day-dots {
    display: flex;
    gap: 2px;
}

.event-dot {
    width: 4px;
    height: 4px;
    background: var(--slate-blue);
    border-radius: 50%;
}

.month-day-cell.today .event-dot {
    background: white;
}

/* Year View */
.year-view-ios {
    padding: 16px;
    overflow-y: auto;
}

.year-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.mini-month {
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.mini-month:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.mini-month-header {
    text-align: center;
    padding: 8px;
    font-size: 11px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-black);
}

.mini-month-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    padding: 8px;
    gap: 2px;
}

.mini-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    color: var(--text-black);
    font-weight: 500;
}

.mini-day.other-month {
    opacity: 0.3;
}

.mini-day.today {
    background: var(--slate-blue);
    color: white;
    border-radius: 50%;
}

.fab {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 56px;
    height: 56px;
    border-radius: 28px;
    background: var(--slate-blue);
    color: white;
    font-size: 28px;
    font-weight: 300;
    line-height: 1;
    border: none;
    box-shadow: 0 4px 16px rgba(123, 147, 168, 0.25);
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 100;
}

.fab:active {
    transform: scale(0.9);
}

.screen {
    display: none;
    flex-direction: column;
    height: 100vh;
    overflow: hidden;
}

.screen.active {
    display: flex;
}

.search-box {
    padding: 16px;
    border-bottom: none;
}

.search-box input {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--text-black);
}

.search-box input:focus {
    outline: none;
    border-color: var(--slate-blue);
    background: rgba(255, 255, 255, 0.6);
}

.search-box input::placeholder {
    color: var(--text-gray);
}

.clients-list {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
}

.client-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.client-card:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.client-name {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-black);
}

.client-meta {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: var(--text-gray);
    margin-bottom: 12px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
}

.client-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.client-stat {
    text-align: center;
    padding: 8px;
    border-right: none;
}

.client-stat:last-child {
    border-right: none;
}

.client-stat-label {
    font-size: 0.7rem;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
}

.client-stat-value {
    font-family: 'Crimson Pro', serif;
    font-size: 1.5rem;
    font-weight: 600;
}

.stats-menu {
    padding: 16px;
}

.stats-menu-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 16px;
    margin-bottom: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.stats-menu-item:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.report-title {
    font-weight: 600;
    font-size: 14px;
    text-transform: none;
    letter-spacing: 0;
    color: var(--text-black);
}

.settings-list {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
}

.settings-section {
    margin-bottom: 24px;
}

.section-title {
    font-family: 'Crimson Pro', serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-black);
}

.settings-item {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.settings-item.btn-link {
    cursor: pointer;
    transition: all 0.2s ease;
    justify-content: flex-start;
    font-weight: 600;
}

.settings-item.btn-link:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
    border-color: var(--slate-blue);
}

.setting-label {
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.setting-value {
    font-size: 0.95rem;
    color: var(--text-gray);
    font-weight: 500;
}

.bottom-nav {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 8px 16px 12px;
    margin: 16px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.nav-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 4px;
    border: none;
    background: none;
    color: var(--text-gray);
    cursor: pointer;
    transition: all 0.2s ease;
}

.nav-btn.active {
    color: var(--slate-blue);
}

.nav-btn:hover {
    color: var(--slate-blue);
}

.nav-icon {
    font-size: 22px;
    stroke-width: 2;
}

.nav-btn.active .nav-icon {
    stroke-width: 2.5;
}

.nav-label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
}

.nav-btn.active .nav-label {
    font-weight: 600;
}

.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(42, 42, 42, 0.5);
    z-index: 1000;
}

.modal-overlay.active {
    display: block;
}

.modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 420px;
    max-height: 90vh;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    z-index: 1001;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.modal.active {
    display: flex;
    flex-direction: column;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
}

.modal-header h2 {
    font-family: 'Crimson Pro', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--text-black);
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-gray);
    cursor: pointer;
    padding: 4px;
    width: 32px;
    height: 32px;
    line-height: 1;
    font-weight: 400;
    transition: color 0.2s ease;
}

.modal-close:hover {
    color: var(--text-black);
}

.modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-black);
    text-transform: none;
    letter-spacing: 0;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--text-black);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--slate-blue);
    background: rgba(255, 255, 255, 0.6);
}

.form-hint {
    font-size: 12px;
    color: var(--text-gray);
    margin-top: 8px;
    font-weight: 500;
    padding: 8px 12px;
    background: rgba(123, 147, 168, 0.1);
    border-left: 2px solid var(--slate-blue);
    border-radius: 4px;
}

.radio-group {
    display: flex;
    gap: 2rem;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.radio-label input[type="radio"] {
    width: 22px;
    height: 22px;
}

.form-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.btn {
    padding: 14px 16px;
    border: none;
    border-radius: 10px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: none;
    letter-spacing: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn:active {
    transform: scale(0.95);
}

.btn-primary {
    background: var(--slate-blue);
    color: white;
    flex: 1;
    box-shadow: 0 4px 16px rgba(123, 147, 168, 0.25);
}

.btn-primary:hover {
    background: #6a8295;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-black);
    flex: 1;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.35);
}

/* Event View Modal */
.event-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.event-detail-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-light);
}

.detail-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.detail-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-black);
    text-align: right;
}

.event-status-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-dark);
}

.btn-status {
    flex: 1;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--text-black);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 10px;
}

.btn-status:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.btn-status.completed {
    border-color: rgba(107, 125, 68, 0.3);
}

.btn-status.completed:hover,
.btn-status.completed.active {
    background: #6b7d44;
    color: white;
}

.btn-status.cancelled {
    border-color: rgba(200, 90, 74, 0.3);
}

.btn-status.cancelled:hover,
.btn-status.cancelled.active {
    background: #c85a4a;
    color: white;
}

.btn-status.planned {
    border-color: var(--slate-blue);
}

.btn-status.planned:hover,
.btn-status.planned.active {
    background: var(--slate-blue);
    color: white;
}

/* Day Plan Modal */
.day-plan-items {
    display: flex;
    flex-direction: column;
}

.day-plan-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border-light);
    border-left: 4px solid var(--slate-blue);
    cursor: pointer;
    transition: background 0.2s;
}

.day-plan-item:hover {
    background: var(--powder-blue-light);
}

.day-plan-time {
    font-family: 'Crimson Pro', serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-black);
    min-width: 50px;
}

.day-plan-info {
    flex: 1;
}

.day-plan-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-black);
    margin-bottom: 0.25rem;
}

.day-plan-meta {
    font-size: 0.8rem;
    color: var(--text-gray);
    font-weight: 500;
}

.empty-state {
    text-align: center;
    padding: 5rem 2rem;
    color: var(--text-gray);
}

.empty-icon {
    font-size: 5rem;
    margin-bottom: 2rem;
    opacity: 0.3;
    font-weight: 300;
}

.empty-state p {
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 500;
}

@media (min-width: 481px) {
    .app-container {
        box-shadow: 0 0 40px var(--shadow);
    }
}
