#kiosko-container {
    max-width: 450px;
    margin: 40px auto;
    text-align: center;
    font-family: Arial;
}

#kiosko-pin {
    width: 90%;
    padding: 20px;
    font-size: 28px;
    text-align: center;
    margin-bottom: 20px;
}

#kiosko-numpad {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

#kiosko-numpad button {
    padding: 25px;
    font-size: 24px;
    cursor: pointer;
}

#kiosko-alert {
    margin-top: 30px;
    padding: 20px;
    font-size: 22px;
    border-radius: 4px;
}

#kiosko-alert.success { background: #d4ffd4; color: #0a7c0a; }
#kiosko-alert.error { background: #ffd6d6; color: #9f0000; }


#kiosko-alert {
    margin-top: 20px;
    padding: 12px 16px;
    border-radius: 6px;
    display: none;
    font-size: 16px;
    text-align: center;
}

#kiosko-alert.kiosko-success {
    background: #e3f9e5;
    border: 1px solid #2ecc71;
}

#kiosko-alert.kiosko-error {
    background: #ffecec;
    border: 1px solid #e74c3c;
}


#kiosko-datetime {
    margin-bottom: 20px;
    text-align: center;
    font-family: inherit;
}

#kiosko-date {
    font-size: 18px;
    font-weight: 600;
}

#kiosko-time {
    font-size: 24px;
    font-weight: 700;
}


#kiosko-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    gap: 10px;
}

#kiosko-datetime {
    text-align: left;
}

#kiosko-date {
    font-size: 18px;
    font-weight: 600;
}

#kiosko-time {
    font-size: 24px;
    font-weight: 700;
}

#kiosko-fullscreen {
    padding: 8px 14px;
    font-size: 14px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
}
