
body, html {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    min-height: 100vh; /* Ensure at least full viewport height */
}
.fullscreen-overlay {
    position: fixed; /* Position it relative to the viewport */
    top: 0;
    left: 0;
    width: 100%; /* Cover full viewport width */
    height: 100%; /* Cover full viewport height */
    background-color: rgba(255,255,255,0.8); /* White background */
    background-image: url('../gif/spinner-2.gif'); /* Path to your gif */
    background-repeat: no-repeat;
    background-position: center; /* Center the background image */
    background-size: contain; /* Make sure the image fits within the div */
    z-index: 10; /* Sit on top of other content */
}
.app-container {
    display: flex;
    flex-direction: column;
    height: 100vh; /* Example if header and footer total height is 150px */
    padding-bottom: 75px; /* Adjust for your footer height */
    overflow-y: auto; /* Add this to enable scrolling within the container */
    max-width: 720px; /* Maximum width of the container */
    width: 100%; /* Make it responsive */
    margin: auto; /* For horizontal centering */
    margin-top: 75px; /* Adjusted to match your header height */
    box-shadow: 0 2px 5px rgba(0,0,0,0.2); /* Optional: Adds shadow for better visibility */
    z-index: 1; /* Ensures it's above the background */
    background-color: aliceblue;
}

.app-header, .app-footer {
    text-align: center;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    box-sizing: border-box;
}
.app-footer {
    position:fixed;
    bottom: 0px;
    left: 0px;
    z-index: 50;
    width: 100%;
    cursor: pointer;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.main-footer{
    display: none;
}
.app-header {
    position:fixed;
    top: 0px;
    left: 0px;
    z-index: 5;
    width: 100%;
}

.app-content {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    text-align: center;
    display: none;
}
.app-content {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.single-column {
    margin-bottom: 20px; /* Adjust as needed */
    padding: 10px 5px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    border-radius: 8px;
    background-color: #fff;
}

.multi-columns {
    display: flex;
    flex-direction: row;
}

.left-column, .middle-column, .right-column {
    flex: 1; /* Makes the two columns take up equal space */
    padding: 10px 5px; /* Adjust as needed */
    margin: 0px 5px;
    margin-bottom: 20px; /* Adjust as needed */
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    border-radius: 8px;
    background-color: #fff;
    position: relative;
}

/* Responsive design adjustments */
@media (max-width: 600px) {
    .app-header, .app-footer {
        padding: 15px;
    }

    .app-content {
        padding: 15px;
    }
}
.app-content h3 {
    margin-block-start: 0.8em;
}
label, input, select{
    width: 90%;
    max-width: 350px;
}
label{
    font-size: 18px;
}
input, select{
    font-size: 20px;
    padding: 15px;
    border: 1px solid #61707d;
    border-radius: 8px;
    margin-bottom: 20px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.clickable{
    cursor: pointer;
}
.clickable:hover{
    background-color: #f7f7ff;
    box-shadow: 0 6px 5px rgba(0,0,0,0.2);
}
.counter{
    position: absolute;
    top: -10px; /* Adjust these values based on the icon size */
    right: -10px;
    background-color: #e85d75;
    color: white; /* White text color */
    border-radius: 50%; /* Circular shape */
    padding: 5px 10px; /* Top and bottom padding, Left and right padding */
    font-size: 14px; /* Smaller font size for the number */
    font-weight: bold;
    display: none;
}
.margin-below{
    margin-block-end: 0.8em;
}
.completedAppointmentImagesContainer{
    display: flex;
    flex-direction: column;
    padding-bottom: 200px;
}
.completedAppointmentMoviesContainer{
    display: flex;
    flex-direction: column;
    padding-bottom: 200px;
}
.appointment-image{
    flex: 1;
    margin-bottom: 10px;
    border-radius: 8px;
}
.appointment-movie{
    flex: 1;
    margin-bottom: 10px;
    border-radius: 8px;
}
.progress {
    width: 100%;
    background-color: #65c9cb;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
    display: none;
}

.progress-bar {
    height: 30px;
    background-color: #fff;
    width: 0%;
    transition: width 0.4s;
}
.hidden {
    display: none;
}

.advert_cont {
    position: relative;
    height: fit-content;
  }

.advert_cont img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border-radius: 8px;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    }

.advert_cont img.active {
    opacity: 1;
    }

.advert {
    width: 100%;
    border-radius: 8px;
}