@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

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

body {
    font-family: 'Montserrat', sans-serif;
    background: #F5F1E3;
    color: #2F5233;
    line-height: 1.6;
    min-height: 100vh;
}

.app-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.header {
    background: linear-gradient(135deg, #F5F1E3 0%, #FAF8F0 100%);
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 2px;
    box-shadow: 0 4px 12px rgba(47, 82, 51, 0.12);
    border: 1px solid rgba(47, 82, 51, 0.1);
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(47, 82, 51, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.header h1 {
    color: #2F5233;
    font-size: 32px;
    margin-bottom: 12px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.header-subtitle {
    color: #2F5233;
    font-size: 18px;
    opacity: 0.85;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

.header-controls {
    position: absolute;
    top: 2px;
    right: 20px;
    display: flex;
    gap: 10px;
    align-items: center;
    z-index: 10;
}

.guest-location-info {
    margin-bottom: 2px;
}

.location-card {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 12px;
    border: 2px solid rgba(47, 82, 51, 0.2);
    box-shadow: 0 4px 12px rgba(47, 82, 51, 0.1);
}

.location-card h4 {
    color: #2F5233;
    margin-bottom: 12px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.location-card p {
    color: #2F5233;
    margin-bottom: 8px;
    font-weight: 500;
}

.location-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.location-note {
    color: #2F5233;
    font-size: 14px;
    opacity: 0.8;
}

.card {
    background: white;
    border-radius: 12px;
    padding: 28px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(47, 82, 51, 0.08);
    border: 1px solid rgba(47, 82, 51, 0.08);
}

.card-title {
    font-size: 18px;
    font-weight: 600;
    color: #2F5233;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Modern Form Design */
.form-container {
    background: linear-gradient(135deg, #FAF8F0 0%, #F5F1E3 100%);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 8px 24px rgba(47, 82, 51, 0.12);
    border: 1px solid rgba(47, 82, 51, 0.08);
    position: relative;
    overflow: hidden;
}

.form-container::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(47, 82, 51, 0.03) 0%, transparent 70%);
    border-radius: 50%;
}

.form-section {
    margin-bottom: 28px;
}

.form-section-title {
    color: #2F5233;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.form-section-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, rgba(47, 82, 51, 0.2), transparent);
    margin-left: 12px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.form-row.single {
    max-width: 400px;
}

.form-row.double > .form-group {
    flex: 1;
    min-width: 200px;
}

.form-row.triple > .form-group {
    flex: 1;
    min-width: 150px;
}

.form-group {
    display: flex;
    flex-direction: column;
    position: relative;
}

.form-group label {
    font-weight: 600;
    color: #2F5233;
    margin-bottom: 8px;
    font-size: 14px;
    transition: color 0.3s ease;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid rgba(47, 82, 51, 0.2);
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: white;
    color: #2F5233;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 2px 8px rgba(47, 82, 51, 0.06);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2F5233;
    background: #FAF8F0;
    box-shadow: 0 4px 16px rgba(47, 82, 51, 0.15);
    transform: translateY(-1px);
}

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
    border-color: #e53e3e;
    background: #ffeaea;
    box-shadow: 0 2px 8px rgba(229, 62, 62, 0.15);
}

.form-group.has-error label {
    color: #e53e3e;
}

.field-error {
    color: #e53e3e;
    font-size: 12px;
    margin-top: 6px;
    font-weight: 500;
    display: none;
    padding: 4px 8px;
    background: rgba(229, 62, 62, 0.1);
    border-radius: 6px;
    border-left: 3px solid #e53e3e;
}

.form-group.has-error .field-error {
    display: block;
}

/* Guest count section styling */
.guest-count-section {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(47, 82, 51, 0.08);
    border: 1px solid rgba(47, 82, 51, 0.06);
}

.guest-count-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
}

.guest-count-item {
    text-align: center;
    padding: 16px;
    background: #F5F1E3;
    border-radius: 10px;
    border: 1px solid rgba(47, 82, 51, 0.1);
    transition: all 0.3s ease;
}

.guest-count-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(47, 82, 51, 0.12);
}

/* === LÄGG TILL DETTA HÄR === */

/* Staff section - matcha guest section styling */
.staff-section {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(47, 82, 51, 0.08);
    border: 1px solid rgba(47, 82, 51, 0.06);
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
}

.staff-item {
    text-align: center;
    padding: 16px;
    background: #F5F1E3;
    border-radius: 10px;
    border: 1px solid rgba(47, 82, 51, 0.1);
    transition: all 0.3s ease;
}

.staff-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(47, 82, 51, 0.12);
}

.staff-item label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #2F5233;
    margin-bottom: 8px;
    text-align: center;
}

.staff-item input {
    width: 100%;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    margin: 0;
}

.staff-item small {
    display: block;
    font-size: 11px;
    color: #38a169;
    font-weight: 600;
    margin-top: 6px;
}

/* Drivers eating choice - kompakt layout */
.drivers-eating-choice {
    grid-column: 1 / -1;
    background: #FAF8F0;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid rgba(47, 82, 51, 0.1);
}

.drivers-eating-choice label[for="label-drivers-eating"] {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #2F5233;
    margin-bottom: 8px;
}

.drivers-eating-options {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.drivers-eating-options label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    cursor: pointer;
}

.drivers-eating-options input[type="radio"] {
    width: 16px;
    height: 16px;
}

/* Other staff description - kompakt */
.staff-description-group {
    grid-column: 1 / -1;
    background: #FAF8F0;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid rgba(47, 82, 51, 0.1);
}

.staff-description-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #2F5233;
    margin-bottom: 8px;
    text-align: left;
}

.staff-description-group input {
    width: 100%;
    text-align: left;
    font-size: 14px;
}

/* === SLUT PÅ NY CSS === */

.guest-count-item label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #2F5233;
    margin-bottom: 8px;
    text-align: center;
}

.guest-count-item input {
    width: 100%;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    margin: 0;
}

/* Special requests section */
.special-requests {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(47, 82, 51, 0.08);
    border: 1px solid rgba(47, 82, 51, 0.06);
}

.special-requests textarea {
    min-height: 100px;
    resize: vertical;
}

/* Contact info icons */
.contact-icon {
    color: #2F5233;
    font-size: 16px;
}

/* Date notice styling */
.date-notice {
    font-size: 12px;
    color: #2F5233;
    opacity: 0.7;
    margin-top: 6px;
    padding: 8px 12px;
    background: rgba(47, 82, 51, 0.05);
    border-radius: 8px;
    border-left: 3px solid rgba(47, 82, 51, 0.3);
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .form-container {
        padding: 20px;
        margin: 0 -4px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 16px;
    }
    
    .form-row.single,
    .form-row.double,
    .form-row.triple {
        flex-direction: column;
    }
    
    .guest-count-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    /* Staff grid mobile */
    .staff-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    /* Drivers eating options mobile */
    .drivers-eating-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .drivers-eating-options label {
        font-size: 14px;
    }
    
    /* Staff items mobile */
    .staff-item {
        padding: 14px;
    }
    
    .staff-item label {
        font-size: 14px;
    }
    
    .drivers-eating-choice,
    .staff-description-group {
        padding: 14px;
    }
    
    .form-section-title {
        font-size: 15px;
    }
}

/* Enhanced button styling to match */
.button-group {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(47, 82, 51, 0.1);
    display: flex;
    justify-content: center;
    gap: 16px;
}

.button-primary {
    background: linear-gradient(135deg, #2F5233 0%, #1d3220 100%);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(47, 82, 51, 0.3);
    position: relative;
    overflow: hidden;
}

.button-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.button-primary:hover::before {
    left: 100%;
}

.button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(47, 82, 51, 0.4);
}

.button-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #2F5233;
    transform: none !important;
    box-shadow: none !important;
}

.button-primary:disabled:hover {
    background: #2F5233;
    transform: none !important;
    box-shadow: none !important;
}

/* Error states for form fields */
.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
    border-color: #e53e3e;
    background: #ffeaea;
}

.form-group.has-error label {
    color: #e53e3e;
}

.field-error {
    color: #e53e3e;
    font-size: 12px;
    margin-top: 4px;
    display: block;
    font-weight: 500;
}

.form-group.has-error .field-error {
    display: block;
}

.menu-inputs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
    padding: 16px;
    background: #F5F1E3;
    border-radius: 8px;
    margin-bottom: 16px;
}

.menu-input-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.menu-input-group label {
    font-size: 14px;
    color: #2F5233;
    min-width: 80px;
    font-weight: 500;
}

.menu-input-group input {
    width: 60px;
    padding: 6px 10px;
    border: 2px solid #2F5233;
    border-radius: 6px;
    text-align: center;
    background: white;
    color: #2F5233;
    font-family: 'Montserrat', sans-serif;
}

/* Radio button styling for menu selection */
.menu-radio {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 160px;
    justify-content: center;
}

.menu-radio input[type="radio"] {
    width: 20px;
    height: 20px;
    border: 2px solid #2F5233;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    margin: 0;
}

.menu-radio input[type="radio"]:checked {
    background: #2F5233;
    box-shadow: inset 0 0 0 3px white;
}

.radio-label {
    color: #2F5233;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    user-select: none;
}

.radio-label:hover {
    opacity: 0.8;
}

.button {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
}

.button-primary {
    background: #2F5233;
    color: white;
}

.button-primary:hover {
    background: #1d3220;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(47, 82, 51, 0.3);
}

/* Loading states for buttons */
.button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

.button-loading {
    position: relative;
    color: transparent !important;
}

.button-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid #ffffff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.status-message {
    padding: 12px 16px;
    border-radius: 8px;
    margin-top: 16px;
    font-weight: 500;
    display: none;
}

.status-message.success {
    background: #c6f6d5;
    color: #22543d;
    border: 2px solid #38a169;
}

.status-message.error {
    background: #ffeaea;
    color: #e53e3e;
    border: 2px solid #e53e3e;
}

.status-message.info {
    background: #F5F1E3;
    color: #2F5233;
    border: 2px solid #2F5233;
}

/* Compact pricing section */
.pricing-section {
    margin-bottom: 20px;
}

.pricing-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 3px 10px rgba(47, 82, 51, 0.08);
    border: 1px solid rgba(47, 82, 51, 0.08);
}

.pricing-title {
    font-size: 18px;
    color: #2F5233;
    margin-bottom: 16px;
    font-weight: 600;
}

.pricing-table {
    border: 1px solid #2F5233;
    border-radius: 8px;
    overflow: hidden;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 16px;
    border-bottom: 1px solid rgba(47, 82, 51, 0.2);
    background: white;
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-row:nth-child(even) {
    background: #F5F1E3;
}

.price-amount {
    font-weight: 600;
    color: #2F5233;
    font-size: 14px;
}

.age-info {
    margin-top: 12px;
    text-align: center;
    font-size: 13px;
    color: #2F5233;
    opacity: 0.8;
}

.experience-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.experience-name {
    font-weight: 600;
    color: #2F5233;
    font-size: 15px;
}

.experience-desc {
    font-size: 12px;
    color: #2F5233;
    opacity: 0.7;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .experience-name {
        font-size: 14px;
    }
    
    .experience-desc {
        font-size: 11px;
    }
}

@media (max-width: 768px) {
    .pricing-card {
        padding: 16px;
    }
    
    .pricing-row {
        padding: 6px 12px;
        font-size: 14px;
    }
    
    .price-amount {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card {
        padding: 20px;
    }
}

.button-secondary {
    background: transparent;
    color: #2F5233;
    border: 2px solid #2F5233;
}

.button-secondary:hover {
    background: #2F5233;
    color: white;
}

.button-group {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    justify-content: center;
}

.message-output {
    margin-top: 24px;
    display: none;
}

.confirmation-card {
    background: #c6f6d5;
    border: 2px solid #38a169;
    border-radius: 12px;
    padding: 28px;
    margin-top: 20px;
}

.confirmation-card h2 {
    color: #22543d;
    margin-bottom: 16px;
    font-size: 24px;
}

.confirmation-content {
    color: #22543d;
    line-height: 1.8;
}

.confirmation-content ul, .confirmation-content ol {
    margin: 16px 0;
    padding-left: 20px;
}

.confirmation-content p {
    margin-bottom: 12px;
}

.confirmation-content strong {
    font-weight: 600;
}

.alert {
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.alert-info {
    background: #F5F1E3;
    color: #2F5233;
    border: 2px solid #2F5233;
}

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 12px 20px;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    z-index: 10000;
    max-width: 300px;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.notification.success {
    background-color: #2F5233;
}

.notification.error {
    background-color: #a8312f;
}

.notification.info {
    background-color: #2F5233;
    opacity: 0.9;
}

/* Force everything to stay within screen on mobile */
* {
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
}

.app-container,
.header,
.card,
.location-card,
.form-group,
.form-group input,
.form-group select,
.form-group textarea {
    max-width: 100%;
    min-width: 0;
}

@media (max-width: 768px) {
    .app-container {
        padding: 12px;
    }
    
    .header,
    .card,
    .location-card {
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .header {
        padding: 16px;
    }
    
    .card {
        padding: 16px;
    }
    
    .location-card {
        padding: 16px;
    }
    
    .header {
        padding: 20px;
    }
    
    .header h1 {
        font-size: 24px;
        margin-bottom: 8px;
    }
    
    .header-subtitle {
        font-size: 15px;
    }
    
    .header-controls {
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
        margin-bottom: 20px;
        justify-content: center;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .button-group {
        flex-direction: column;
    }
    
    .location-links {
        flex-direction: column;
    }
    .card {
        padding: 20px;
        margin: 0 0 16px 0;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .menu-inputs {
        padding: 12px;
        gap: 8px;
    }
    
    .menu-input-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    
    .menu-input-group label {
        min-width: auto;
    }
}

/* Menu Story Cards */
.menu-story-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
}

.menu-story-card {
    background: #F5F1E3;
    border: 2px solid #2F5233;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.menu-story-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(47, 82, 51, 0.15);
}

.menu-story-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex: 1;
}

.menu-icon {
    font-size: 24px;
    line-height: 1;
}

.menu-story-info {
    flex: 1;
}

.menu-story-title {
    color: #2F5233;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 6px 0;
    line-height: 1.3;
}

.menu-story-desc {
    color: #2F5233;
    font-size: 13px;
    opacity: 0.8;
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.menu-story-link {
    color: #2F5233;
    font-size: 12px;
    text-decoration: underline;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.menu-story-link:hover {
    opacity: 1;
}

.menu-counter {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 120px;
    justify-content: center;
}

.counter-btn {
    background: #2F5233;
    color: white;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.counter-btn:hover {
    background: #1d3220;
    transform: scale(1.1);
}

.counter-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.counter-display {
    font-weight: 600;
    color: #2F5233;
    text-align: center;
    min-width: 60px;
    font-size: 14px;
}

.menu-validation {
    background: #F5F1E3;
    border: 2px solid #2F5233;
    border-radius: 8px;
    padding: 12px 16px;
    text-align: center;
    color: #2F5233;
    font-weight: 500;
    font-size: 14px;
}

@media (max-width: 768px) {
    .menu-story-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 16px;
    }
    
    .menu-counter {
        align-self: center;
        min-width: auto;
    }
    
    .menu-story-title {
        font-size: 15px;
    }
    
    .menu-story-desc {
        font-size: 12px;
    }
}

/* Dölj alla tidsalternativ som standard */
.time-option {
    display: none;
}

/* Visa relevanta tider baserat på vald upplevelse */
.experience-shared-lunch .time-11am,
.experience-shared-lunch .time-12pm,
.experience-shared-lunch .time-1pm { display: block; }

.experience-shared-dinner .time-6pm,
.experience-shared-dinner .time-7pm { display: block; }

.experience-cooking-class .time-3pm { display: block; }

.experience-private-lunch .time-11am,
.experience-private-lunch .time-12pm,
.experience-private-lunch .time-1pm,
.experience-private-lunch .time-2pm { display: block; }

.experience-private-cooking .time-9am,
.experience-private-cooking .time-10am,
.experience-private-cooking .time-11am { display: block; }

/* Placeholder är alltid synlig */
#time-placeholder { display: block !important; }