body {
    background: white;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    margin: 0;
}

input{
    background-color: white !important;
    color: black !important;
}

input::placeholder {
    color: #ccc;
}


.logo-wrapper{
    display: grid;
    align-items: center;
}

.logo{
    width: 150px;
    background-color: white;
    text-align: center;
}

.app_name{
    line-height: 10px;
}

.app{
    background-color: var(--schcolor2);
    color: white;
    height: 580px;
    overflow-x: hidden;
    overflow-y: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.app::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.view{
    width: 100%;
    h4{
        text-align: center;
    }
}

.mobile{
    .iphone-frame{
        border:none;
        width: 100vw;
    }
    .form-area {
        padding: 30px 0 20px 0;
        margin-top: 0;
        width: 100vw;
        height: 100vh;
    }
    .app {
        padding: 20px 15px;
        box-sizing: border-box;
    }
}

.desktop{
    .app_name{
        line-height: 35px;
    }
    .iphone-frame {
        width: 375px;
        height: 90%;
        min-height: 720px;
        background: #fff;
        border-radius: 44px;
        box-shadow: 0 4px 32px rgba(0,0,0,0.20);
        border: 6px solid #222;
        position: relative;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        margin: 5px 0px;
    }

    .iphone-notch {
        width: 210px;
        height: 30px;
        background: #222;
        border-radius: 0 0 18px 18px;
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        margin-top: 6px;
        z-index: 2;
    }

    .iphone-home-btn {
        position: absolute;
        left: 50%;
        bottom: 24px;
        transform: translateX(-50%);
        width: 54px;
        height: 54px;
        background: #e5e5e7;
        border-radius: 50%;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        border: 2px solid #bbb;
        cursor: pointer;
        z-index: 2;
        transition: background 0.2s;
    }
    .iphone-home-btn:active {
        background: #d2d2d4;
    }

}

.text-muted {
    color: #ccc !important;
    text-align: center;
}

.form-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    margin-top: 48px;
    width: 100%;
    box-sizing: border-box;
}
form {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}
input, button {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 1rem;
}
button {
    background: #008cff;
    color: #fff;
    border: none;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}
button:hover {
    background: #006bbf;
}


.ticket-tiles-container::-webkit-scrollbar {
    width: 6px;
}
.ticket-tiles-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}
.ticket-tiles-container::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
}
.ticket-tiles-container::-webkit-scrollbar-thumb:hover {
    background: #555;
}


.loading-spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #008cff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

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

.success-icon, .error-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 3rem;
}

.success-icon {
    background: #4caf50;
    color: white;
}

.error-icon {
    background: #f44336;
    color: white;
}

.view-hidden {
    display: none;
}

/*======SCH CSS ========*/
.desktop{
    .iphone-frame{
        background-color: var(--schcolor1);
    }
}

.btn-sch{
    background-color: var(--schcolor1);
    border: 1px solid var(--schcolor1);
    color: white;
}

.btn-sch:hover{
    background-color: var(--schcolor1);
    border: 1px solid var(--schcolor1);
}

.btn-outline-sch{
    color: var(--schcolor1);
    border: 1px solid var(--schcolor1);
}

.btn-outline-sch:hover{
    background-color: var(--schcolor1);
    color: white;
    border-color: var(--schcolor1);
}

.lobibox-notify.lobibox-notify-info{
    background-color: var(--schcolor1) !important;
    border-color: var(--schcolor1) !important;
}

/*======SCH CSS ========*/