:root {
    --font-stack: 'Inter', system-ui, -apple-system, sans-serif;
    --primary: #007aff;
    --bg-color: #f5f7fa;
    --card-bg: #ffffff;
    --text-main: #1d1d1f;
    
    /* Highlighters */
    --highlight-yellow: rgba(255, 247, 0, 0.4);
    --highlight-green: #d1e7dd; 
    --highlight-red: #f8d7da;   
    --highlight-beige: #f5f5dc;
    --highlight-blue: #cff4fc;

    --national-color: #ff0019; /* Red */
    --state-color: #ff0080;    /* Pinkish Red */
    --festival-color: #ff7300; /* Orange */
}

body {
    font-family: var(--font-stack);
    background-color: var(--bg-color);
    color: var(--text-main);
    -webkit-font-smoothing: antialiased;
}

/* Nav & Buttons */
.brand-text { font-size: 1.5rem; letter-spacing: -0.02em; }
.btn-drink {
    background: #FFDD00; color: #000; font-weight: 600;
    font-size: 0.85rem; padding: 8px 16px; border-radius: 20px;
    text-decoration: none; box-shadow: 0 2px 5px rgba(0,0,0,0.08);
}

/* Cards */
.compact-card {
    background: var(--card-bg);
    width: 100%;
    max-width: 420px;
    padding: 30px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.status-emoji { font-size: 3.5rem; animation: popIn 0.5s; }
@keyframes popIn { 0% { transform: scale(0); } 100% { transform: scale(1); } }

/* --- Status Result Text Styling --- */
.status-main-line {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 16px;
    display: block;
}

.status-reason-line {
    font-size: 1rem;
    line-height: 1.4;
    display: inline-flex;     
    align-items: center;      
    justify-content: center;
    gap: 12px;
}

/* Highlighters */
.highlight-yellow { background: var(--highlight-yellow); padding: 0 4px; border-radius: 4px; color: #000; font-weight: 700; }
.highlight-green { background: var(--highlight-green); color: #0f5132; padding: 0 6px; border-radius: 4px; font-weight: 700; }
.highlight-red { background: var(--highlight-red); color: #842029; padding: 0 6px; border-radius: 4px; font-weight: 700; }
.highlight-beige { background: var(--highlight-beige); color: #5c4b51; padding: 2px 6px; border-radius: 4px; font-weight: 600; border: 1px solid #eaddcf; }
.highlight-blue { background: var(--highlight-blue); color: #055160; padding: 2px 6px; border-radius: 4px; font-weight: 700; }

/* Input Container */
.input-container {
    background: #fff; width: 100%; max-width: 420px;
    border-radius: 16px; border: 1px solid rgba(0,0,0,0.08); overflow: hidden;
}
.input-label {
    position: absolute; top: 6px; left: 16px; font-size: 0.65rem;
    text-transform: uppercase; font-weight: 700; color: #999; pointer-events: none;
}

.modern-input {
    width: 100%; 
    border: none; 
    height: 60px; 
    padding-top: 18px; 
    padding-bottom: 2px;
    padding-right: 15px;
    font-size: 1rem; 
    font-weight: 600; 
    background: transparent; 
    color: #333; 
    outline: none;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: none !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* List Styles */
.calendar-list-container { max-height: 300px; overflow-y: auto; padding-right: 5px; }
.calendar-list-container::-webkit-scrollbar { width: 6px; }
.calendar-list-container::-webkit-scrollbar-thumb { background-color: #ccc; border-radius: 10px; }

.list-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 10px 0; border-bottom: 1px dashed #eee; font-size: 0.95rem;
}
.list-row:last-child { border-bottom: none; }

.text-national { color: var(--national-color); font-weight: 700; }
.text-state { color: var(--state-color); font-weight: 700; }
.text-festival { color: var(--festival-color); font-weight: 700; }