body {
    background-color: #F2C6DE;
    font-family: "Salsa", cursive;
    background: url('/assets/images/bg-2.png');
}

@media print {
    #dock {
        display: none;
    }

    .hide-print{
        display: none;
    }
}

#dock {
    width: 100%;
    position: fixed;
    bottom: 0;
    text-align: center;
}

.font-caveat{
    font-family: "Salsa", cursive;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

.border-palette{
    border: 8px dashed #52663E;
    background-color: #af8887;
    border-radius: 30px;
}
.border-palette h5{
    text-decoration: none !important;
    color: black;
}

.image-disable{
    pointer-events: none !important;
}

#dock-content {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    gap: 5px; /* Adjust the gap between grid items as needed */
    border-top: 4px dashed #c49b9b;
    border-right: 4px dashed #c49b9b;
    border-left: 4px dashed #c49b9b;
    padding-bottom: 2.5vh;
    padding-left: 10px;
    padding-right: 10px;
    background-color: #fdd7d8;
    box-shadow: -1px -19px 74px 12px rgba(253,215,216,1);
    -webkit-box-shadow: -1px -19px 74px 12px rgba(253,215,216,1);
    -moz-box-shadow: -1px -19px 74px 12px rgba(253,215,216,1);
}

.shadow{
    box-shadow: -1px -1px 34px 0px rgba(0,0,0,0.1);
    -webkit-box-shadow: -1px -1px 34px 0px rgba(0,0,0,0.1);
    -moz-box-shadow: -1px -1px 34px 0px rgba(0,0,0,0.1);
}

.login-container {
    width: 100%;
    max-width: 95%;
    padding: 50px;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    background-color: #95B8D1;
    border: 8px dashed #809BCE;
    margin: 0 auto;
    -webkit-print-color-adjust:exact;
}

@media (min-width: 996px) {
    .login-container {
        max-width:80%;
    }
}

@media (min-width: 600px) {
    #dock-content {
        border-radius: 10px 10px 0px 0px; /* Apply border-radius for screens wider than 600px */
    }
}

.grid-item {
    background-color: #ccc; /* For visualization */
    flex: 1 1 auto;
    aspect-ratio: 1;
    border-radius: 10px;
    border: 2px solid #c49b9b;
    max-width: calc((100% - (8 * 5px)) / 5); /* Adjust based on number of items and gap */
    
    margin-top: -20px;
    margin-left: 0.5vw;
    margin-right: 0.5vw;
    padding: 0.5vw;

    /* Flexbox centering */
    display: flex;
    justify-content: center;
    align-items: center;
}

.grid-item img{
    border-radius: 10px;
}

/* MODAL DESIGN */
.modal-content-success{
    background-color: #D6DDD4;
    border: 8px dashed #8f998c;
    border-radius: 40px;
    padding: 2em;
}
.modal-content-failed{
    background-color: #F58B8B;
    border: 8px dashed #F45051;
    border-radius: 40px;
    padding: 2em;
}

.button-close{
    padding: 10px;
    background-color: #943C3A;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.button-close:hover{
    padding: 10px;
    background-color: #7F3433;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}


.modal-content-loader{
    background-color: #3080e8;
    border: 8px dashed #F45051;
    border-radius: 40px;
    padding: 2em;
    font-family: "Permanent Marker", cursive;
}

.btn-mini{
    font-family: "Salsa", cursive;
}

.open-loader{
    display: block;
    cursor: pointer !important;
    text-decoration: none !important;
}

.btn-anabul{
    background-color: #EDC9B3;
    border-radius: 7px;
    color: #52663E; 
    padding: 1rem;
}