:root {
    --bg-color: #f8f9fa;
    --card-bg: #ffffff;
    --header-gradient-start: #a18cd1;
    --header-gradient-end: #fbc2eb;
    --weekday-tag-bg: #8ec5fc;
    
    --text-primary: #2c3e50;
    --text-secondary: #7f8c8d;
    --text-white: #ffffff;
    
    --yoon-color: #FF9F43;   /* Warmer Orange */
    --luzao-color: #2ECC71;  /* Vibrant Green */
    --duo-gradient: linear-gradient(135deg, #FF9F43 0%, #2ECC71 100%);
    
    --primary-color: #6c5ce7;
    --primary-hover: #5b4bc4;
    
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 15px 35px rgba(0,0,0,0.1);
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
}

body {
    font-family: 'Noto Sans SC', 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-color);
    background-image: 
        radial-gradient(at 0% 0%, hsla(253,16%,7%,1) 0, transparent 50%), 
        radial-gradient(at 50% 0%, hsla(225,39%,30%,1) 0, transparent 50%), 
        radial-gradient(at 100% 0%, hsla(339,49%,30%,1) 0, transparent 50%);
    background-image: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%239C92AC" fill-opacity="0.05"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E'), linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    background-attachment: fixed;
    color: var(--text-primary);
    margin: 0;
    padding: 20px;
    min-height: 100vh;
    line-height: 1.6;
}

input, button, select, textarea {
    font-family: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    animation: fadeIn 0.8s ease-out;
}

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

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255,255,255,0.5);
    transition: transform 0.3s ease;
}

header:hover {
    transform: translateY(-2px);
}

h1 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(45deg, #6c5ce7, #a29bfe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

/* Controls */
.controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.view-switcher {
    display: flex;
    background: #f1f2f6;
    border-radius: 30px;
    padding: 4px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
}

.view-btn {
    border: none;
    background: transparent;
    padding: 8px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    color: #7f8c8d;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
}

.view-btn.active {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transform: scale(1.05);
}

#month-year-controls {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-primary);
}

#month-year-controls button {
    background: white;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s;
    color: var(--primary-color);
    font-weight: bold;
}

#month-year-controls button:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

/* Week Controls */
#week-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

#week-controls label {
    font-weight: 700;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

#history-select {
    appearance: none;
    background-color: white;
    border: 1px solid #dfe6e9;
    border-radius: 20px;
    padding: 8px 35px 8px 15px;
    font-family: inherit;
    font-size: 0.9rem;
    color: var(--text-primary);
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%237f8c8d' d='M6 8.825L1.175 4 2.238 2.938 6 6.7l3.763-3.762L10.825 4z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s;
    font-weight: 600;
}

#history-select:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
}

#history-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.1);
}

#custom-date-range {
    display: flex;
    align-items: center;
    gap: 10px;
}

#custom-date-range input {
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Modern selects for stats modal */
#select-week, #select-month, #select-year {
    appearance: none;
    -webkit-appearance: none;
    background-color: white;
    border: 1px solid #e6e9ee;
    border-radius: 12px;
    padding: 8px 36px 8px 14px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-primary);
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%237f8c8d' d='M6 8.825L1.175 4 2.238 2.938 6 6.7l3.763-3.762L10.825 4z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    box-shadow: var(--shadow-sm);
    transition: all 0.18s ease;
    font-weight: 600;
    min-width: 130px;
}

#select-week:hover, #select-month:hover, #select-year:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
}

#select-week:focus, #select-month:focus, #select-year:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(108,92,231,0.08);
}

/* When placed inline, keep spacing neat */
#stats-range-selectors {
    display: inline-flex;
    gap: 8px;
    align-items: center;
}

/* Small screens: make selectors full width inside modal */
@media (max-width: 480px) {
    #select-week, #select-month, #select-year {
        min-width: 100px;
        font-size: 0.9rem;
    }
    #stats-range-selectors { display:flex; flex-direction:column; align-items:stretch; }
}

#apply-custom-range {
    background: #6c5ce7;
    color: white;
    border: none;
    padding: 5px 15px;
    border-radius: 5px;
    cursor: pointer;
}

/* Calendar Grid (Month View) */
.calendar-view {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255,255,255,0.5);
}

.calendar-header-row {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-weight: 700;
    margin-bottom: 15px;
    color: #a4b0be;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 15px;
}

.calendar-day {
    min-height: 140px;
    border: 1px solid #f1f2f6;
    border-radius: var(--radius-sm);
    padding: 10px;
    position: relative;
    background: white;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.calendar-day:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.calendar-day.other-month {
    opacity: 0.4;
    background: #f8f9fa;
    box-shadow: none;
}

.calendar-day-number {
    font-weight: 900;
    font-size: 1.5rem;
    color: #b2bec3;
    text-align: right;
    width: 100%;
    line-height: 1;
    margin-bottom: 5px;
    user-select: none;
}

.calendar-day:hover .calendar-day-number {
    color: var(--primary-color);
}

/* Year View */
.year-view {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.mini-month {
    background: white;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.mini-month-title {
    text-align: center;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.mini-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    text-align: center;
}

.mini-day {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    color: #333;
}

.mini-day.has-schedule {
    background-color: #FF6D75;
    color: white;
}

.mini-day.is-rest {
    background-color: #e0e0e0;
    color: #999;
}

.mini-day:hover {
    transform: scale(1.1);
    z-index: 2;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Dots for Year View */
.dots-container {
    display: flex;
    gap: 2px;
    margin-top: 2px;
    height: 4px;
}

.dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #ccc;
}

.dot.yoon { background-color: var(--yoon-color); }
.dot.luzao { background-color: var(--luzao-color); }
.dot.mystery { background-color: #A020F0; }

/* Tooltip */
.schedule-tooltip {
    position: fixed;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    padding: 15px;
    z-index: 1000;
    max-width: 300px;
    pointer-events: none; /* Let mouse pass through so it doesn't flicker */
    border: 1px solid #eee;
}

/* Reuse existing card styles for tooltip content but scale down slightly if needed */
.schedule-tooltip .day-card {
    box-shadow: none;
    min-height: auto;
    background: transparent;
}

.schedule-tooltip .day-header {
    height: 40px;
}

.schedule-tooltip .date-text {
    font-size: 1.4rem;
    text-align: center; /* Keep centered or adjust as needed */
}

.schedule-tooltip .event-item {
    padding: 5px;
}

.schedule-tooltip .streamer-name {
    font-size: 1rem;
}

.schedule-tooltip .type-badge {
    font-size: 0.9rem;
}

/* Schedule Grid */
.schedule-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr); /* Mobile default */
    gap: 20px;
}

@media (min-width: 600px) {
    .schedule-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1000px) {
    .schedule-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Day Card */
.day-card {
    background-color: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    min-height: 200px;
}

/* Header Styling */
.day-header {
    height: 50px;
    background: linear-gradient(90deg, var(--header-gradient-start), var(--header-gradient-end));
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 0; /* Reset */
}

.weekday-tag {
    background-color: var(--weekday-tag-bg);
    color: white;
    height: 100%;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-weight: bold;
    font-size: 0.9rem;
    letter-spacing: 2px;
    box-shadow: 2px 0 5px rgba(0,0,0,0.1);
    z-index: 2;
}

.date-text {
    flex: 1;
    text-align: center;
    color: white;
    font-size: 1.8rem;
    font-weight: 800;
    font-family: 'Arial', sans-serif;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
    letter-spacing: 1px;
}

/* Events Container */
.events-container {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center; /* Center events vertically if few */
}

/* Event Item */
.event-item {
    background: white;
    border: 2px dotted #ffcccc; /* Default dotted border */
    border-radius: 10px;
    padding: 10px;
    position: relative;
    transition: transform 0.2s;
}

.event-item:hover {
    transform: translateY(-2px);
}

/* Streamer Styles */
.streamer-row {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 5px;
}

.streamer-name {
    font-size: 1.4rem;
    font-weight: 900;
    /* Default color */
    color: #333;
}

.type-badge {
    font-size: 1.2rem;
    font-weight: 900;
    color: inherit; /* Inherit from parent/streamer color */
    opacity: 0.8;
}

/* Specific Streamer Colors */
.streamer-yoon .streamer-name,
.streamer-yoon .type-badge {
    color: var(--yoon-color);
}
.streamer-yoon.event-item {
    border-color: var(--yoon-color);
}

.streamer-luzao .streamer-name,
.streamer-luzao .type-badge {
    color: var(--luzao-color);
}
.streamer-luzao.event-item {
    border-color: var(--luzao-color);
}

.streamer-duo .streamer-name {
    background: var(--duo-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Time Row */
.time-row {
    display: flex;
    align-items: center;
    justify-content: flex-end; /* Right align time */
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--yoon-color); /* Default time color */
}

.streamer-luzao .time-row {
    color: var(--luzao-color);
}

.play-icon {
    font-size: 0.8rem;
    margin-right: 5px;
    transform: translateY(-1px);
}

/* Location Note */
.location-note {
    text-align: right;
    font-size: 0.8rem;
    color: #888;
    margin-top: 2px;
}

/* Special Event (Mystery) */
.is-special {
    background: transparent;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    min-height: 100px;
}

.special-event-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #A020F0;
    text-shadow: 0 0 5px rgba(188, 177, 230, 0.808), 0 0 10px var(--header-gradient-end);
    gap: 5px;
}

/* Rest Day */
.type-Rest {
    background: transparent;
    border: none;
    color: #FFB6BB;
    text-align: center;
    font-weight: bold;
}

.type-Rest .special-event-text {
    color: #FFB6BB;
    text-shadow: 0 0 5px rgba(255,255,255,0.8), 0 0 10px var(--header-gradient-end);
    font-weight: 600;
}

/* Stats Button */
.stats-btn {
    background: #6c5ce7;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background 0.2s;
}

.stats-btn:hover {
    background: #5b4bc4;
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    backdrop-filter: blur(5px);
}

/* Video modal should be above subscription modal */
#video-modal {
    z-index: 2100;
}

.modal-content {
    background: white;
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.modal-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f9f9f9;
}

.modal-header h2 {
    margin: 0;
    color: #333;
}

.close-btn {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #999;
    line-height: 1;
}

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

/* Stats Controls */
.stats-controls {
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    justify-content: center;
}

.range-selector {
    background: #f0f0f0;
    border-radius: 20px;
    padding: 3px;
    display: inline-flex;
}

.range-btn {
    border: none;
    background: transparent;
    padding: 8px 20px;
    border-radius: 17px;
    cursor: pointer;
    font-weight: bold;
    color: #666;
    transition: all 0.2s;
}

.range-btn.active {
    background: white;
    color: #6c5ce7;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

.streamer-stats-card {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    border: 1px solid #eee;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.streamer-stats-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.streamer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.stats-summary {
    margin-bottom: 20px;
}

.total-count {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.stats-section-title {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 5px;
    font-weight: bold;
    text-transform: uppercase;
}

.stats-list {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.stats-list li {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    border-bottom: 1px dashed #eee;
    font-size: 0.95rem;
}

.stats-list li:last-child {
    border-bottom: none;
}

.chart-container {
    position: relative;
    height: 200px;
    margin-top: 20px;
}

/* Month View Event Styling (Mini) */
.calendar-day .event-item {
    padding: 6px 8px;
    border-radius: 6px;
    font-size: 0.82rem;
    border: 1px solid #eee;
    background: white;
    display: flex;
    flex-direction: column;
    gap: 4px;
    overflow: hidden;
    transition: transform 0.15s;
    cursor: pointer;
}

.calendar-day .event-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.calendar-day .event-item.streamer-yoon {
    border-left: 4px solid var(--yoon-color);
    background: #fff8f0;
}

.calendar-day .event-item.streamer-luzao {
    border-left: 4px solid var(--luzao-color);
    background: #f0fff4;
}

.calendar-day .event-item.streamer-duo {
    border-left: 4px solid #ff9a9e;
    background: #fff0f1;
}

/* First row: time (left) and type badge (right) */
.calendar-day .event-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.calendar-day .event-time {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #555;
    font-size: 0.78rem;
    text-align: left;
}

.calendar-day .type-badge {
    font-size: 0.72rem;
    padding: 2px 6px;
    background: rgba(0,0,0,0.06);
    border-radius: 6px;
    color: #444;
    white-space: nowrap;
}

/* Second row: streamer name, allow wrapping */
.calendar-day .streamer-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: #333;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.subscribe-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
}

.sub-option-btn {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background: white;
    border: 1px solid #eee;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    text-align: left;
}

.sub-option-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
}

.sub-option-btn .icon {
    font-size: 1.5rem;
    margin-right: 15px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 50%;
}

.sub-option-btn .text {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--text-primary);
}

.sub-option-btn[data-type="youn"]:hover .icon {
    background: #fff3e0;
}

.sub-option-btn[data-type="luzao"]:hover .icon {
    background: #e8f5e9;
}

.sub-option-btn[data-type="all"]:hover .icon {
    background: #e8eaf6;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
        align-items: stretch;
    }

    h1 {
        text-align: center;
        margin-bottom: 5px;
    }

    .controls {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        width: 100%;
    }

    .view-switcher {
        width: 100%;
        justify-content: space-between;
    }

    .view-btn {
        flex: 1;
        padding: 8px 5px;
        font-size: 0.9rem;
        text-align: center;
    }

    /* Make buttons full width or share width on very small screens */
    .stats-btn {
        flex: 1;
        justify-content: center;
        min-width: 120px;
        font-size: 0.9rem;
    }

    #week-controls {
        width: 100%;
        justify-content: center;
        margin-top: 5px;
    }

    #history-select {
        flex: 1;
        max-width: none;
    }
    
    #month-year-controls {
        width: 100%;
        justify-content: center;
        margin-top: 5px;
    }

    /* Month View Mobile Adaptation */
    .calendar-view {
        padding: 10px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .calendar-header-row, .calendar-grid {
        min-width: 700px; /* Ensure grid doesn't squash on mobile */
    }
}

/* Fix for Year View Tooltip Weekday Display */
.schedule-tooltip .weekday-tag {
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    width: auto;
    padding: 0 12px;
    letter-spacing: 0;
    font-size: 0.9rem;
}