* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

html, body {
    justify-content: center;
    align-items: center;
    height: 100%;
    background-color: #f8f8f8;
}

body {
    display: flex;
    flex-direction: column;
}

.container {
    width: 100%;
    max-width: 400px;
    background-color: #fff;
    flex: 1; 
    display: flex;
    flex-direction: column;
    overflow: hidden; /* Prevent content overflow outside the container */
}

.container2 {
    flex: 1;
    overflow-y: auto; /* Allow scrolling for the main content */
    padding: 5px 37px;
    justify-content: space-between; /* Space out content vertically */
    position: relative; /* Ensure child elements are positioned relative to this container */
}

.display-no{
    display: none;
}

/* logo style */
.logo img {
    width: 70px;
    margin: 20px 0px;
    height: 35px;
}

/* (comman)*/
.content{
    display: inline-block;
    margin: 8px 0;
}

.content span{
    display: inline-block;
    width: 100%;
    margin: 6px 0px;
    font-size: 18px;
    /* font-weight:bold;  */
}
.content input{
    display: inline-block;
    width: 100%;
    padding: 10px 20px;
    margin: 8px 0px;
    border-radius: 8px;
    border: 1px solid #424242c1;
}
.content p{
    font-size: 14px;
    margin: 10px 0px;
}

/* button styles */
button{
    border: none;
    background-color: transparent;
    cursor: pointer;
}

/* style for the backward */
.top_button {
    display: flex;
    align-items: center;
    margin: 8px 0px;
    font-size: 13px;
    cursor: pointer;
}

/* button blue */
.blue_btn{
    width: 100%;
    display: inline-block;
    align-items: center;
    padding: 6px 0;
    background-color: #3a6cf5;
    border-radius: 8px;
    color: #ffffff;
    /* font-size: 16px; */
    cursor: pointer;
    margin-top: 8px;
}
/* button light blue */
.light_blue_btn{
    width: 100%;
    display: inline-block;
    align-items: center;
    padding: 8px 8px;
    color: #2f5ddd;
    border: none;
    border-radius: 10px;
    background-color: #e3f0ff;
    box-shadow: 0 2px 4px rgba(175, 176, 196, 0.329);
    /* font-size: 16px; */
    cursor: pointer;
    margin: 10px 0px;
}

/* button light */
.light_button {
    width: 100%;
    background-color: #dae3fd;
    border: none;
    padding: 6px;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 8px;
    margin-bottom: 8px;
}

.button_div{
    width: 100%;
    display: inline-block;
}
/* end */

.width45{
    width: 45%;
}

/* search style */
.search-bar {
    position: relative;
    /* margin-bottom: 20px; */
    /* margin: 10px 10px; */
}

.search-bar input {
    width: 100%;
    padding: 6px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 13px;
    background-color: #f2f0ff;
}

.search-bar input::placeholder {
    color: #999;
}

/* style for the token booking steps */
.steps {
    display: flex;
    flex-direction: row; /* Arrange steps horizontally */
    justify-content: space-between;
    margin-bottom: 6px;
    width: 100%;
}

.step,
.step-open,
.step-active,
.step-finished {
    font-size: 12px;
    color: #999;
    position: relative;
    text-align: center; 
    flex-grow: 1;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center the span */
    cursor: pointer; /* Indicate that the step is clickable */
}

.circle {
    width: 14px;
    height: 14px;
    border: 2px solid #999;
    border-radius: 50%;
    margin-bottom: 5px;
    transition: all 0.3s ease;
    position: relative;
}

.step-open .circle {
    border-color: #4C6EF5;
}

.step-active .circle {
    color: #4C6EF5;
    border-color: #4C6EF5;
}

.step-active span {
    color: #4C6EF5;
}

.step-open span {
    color: #17181a;
}

.step-finished .circle {
    background-color: #4C6EF5;
    border-color: #4C6EF5;
}

.step-finished span {
    color: #4C6EF5;
}

.step-finished .circle::after {
    content: '\2713'; /* Unicode for a tick mark */
    color: #fff; /* White tick */
    font-size: 10px;
    font-weight: bold;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Center the tick */
}
/* end of step style */

/* near me style */
.near_me{
    color: #152c6b;
    font-size: 14px;
    font-weight: bold;
}

/* heading styles */
.heading1 {
    font-size: 18px; 
    margin: 0; 
    padding: 10px;
}

.heading2{
    font-size: 15px;
    font-weight: bold;
}

/* label */
.label1 {
    font-size: 12px;
}

.label2 {
    font-size: 16px;
    font-weight: bold;
}

.label1, .label2 {
    display: block; 
    margin: 5px 0; 
}

.label3 {
    font-size: 20px;
}

.small-blue{
    font-size: 14px;
    color: #2045ac;
    margin: 10px 0;
}

.small-bold{
    font-size: 14px;
    margin: 10px 0;
    font-weight: bold;
}

/* style for the label */
.loc_label{
    font-size: 15px;
    color: #757575;
    padding: 5px 0;
}
/* end */

/* set the flex */
.set-flex {
    display: flex;
    justify-content: space-between; 
    align-items: center;
}
/* end */
.border_bottom{
    border-bottom: 1px solid #ddd;
}

.border_left{
    border-left: 1px solid #ddd;
}

.rightside {
    margin-left: auto; 
}

.note_content p{
    margin-bottom: 10px;
    font-size: 13px;
}

.inline {
    display: inline;
    margin-right: 5px;
}

.blue_clr{
    color: #3a6cf5;
}

.dark_blue{
    color: #152c6b;
}

.red_clr{
    color: red;
}

.blue1-clr{
    background-color: #d3deff;
}

.blue2-clr{
    color: #455a99;
}

.marg10{
    margin: 10px 0;  
}

.marg_1{
    margin: 80px 70px;
}

.pad-5-20{
    padding: 5px 20px;  
}

.align-center{
    text-align: center;
}

.align-left{
    text-align: left;
}

.aligh-right{
    text-align: right;
}

.marg-r-l{
    margin-right: 20px;
    margin-left: 5px;
}

.verify-link {
    color: #4169e1;
    font-size: 10px;
    text-decoration: none;
    cursor: pointer;
}

.verified {
    color: #008000;
    font-size: 10px;
    cursor: pointer;
}

/* Container for token status and tokens left */
.user-token-container {
    display: flex; /* Use flexbox layout */
    justify-content: space-between; /* Push content to the edges */
    align-items: center; /* Vertically align items */
    position: relative; /* Enable positioning for children */
    color: white; 
}

/* Tokens Left (on the right) */
.tokens-left {
    font-size: 0.9rem;
    color: white;
    background-color: #0056ff; 
    border: none;
    border-radius: 5px; 
    padding: 4px 8px;
}

/* Token Status (on the left) */
#user-token-status {
    display: flex; /* Align icon and text in a row */
    align-items: center; /* Vertically center the items */
    font-size: 14px; 
    background-color: #333; 
    padding: 5px 10px; 
    border-radius: 20px; 
}

/* Status Icon (inside the status box) */
#user-token-status i {
    width: 20px;
    height: 20px;
    display: inline-block;
    background-color: currentColor; /* Use the color of the text */
    border-radius: 50%; 
    margin-right: 10px; /* Space between icon and text */
}

/* Before and After Status Variants */
.status-after {
    color: rgba(105, 230, 105, 0.952); /* Status: Confirmed */
}

.status-cancelled {
    color: red; /* Status: Cancelled */
}

.status-before {
    color: rgb(255, 251, 0); /* Status: Pending */
}

.status-process {
    color: rgb(0, 17, 255); /* Status: Processing */
}

.status-return {
    color: orange; /* Status: Returned */
}

.status-wait {
    color: violet; /* Status: Waiting */
}

.icon-before {
    background-color: rgb(255, 251, 0); 
}

.icon-after {
    background-color: rgba(105, 230, 105, 0.952); 
}

.icon-cancelled {
    background-color: red; 
}

.icon-process {
    background-color: rgb(0, 17, 255); 
}

.icon-return {
    background-color: orange; 
}

.icon-wait {
    background-color: violet; 
}

.minus-clr {
    color: #63f76c;
}

.clock-image {
    width: 65px;        
    height: 65px;
    margin-bottom: 30px;       
    object-fit: contain; /* Maintains aspect ratio within the set width/height */
    display: block;     
    margin: 0 auto;     /* Centers the image horizontally */
    opacity: 0.7;       /* Slight transparency to match the UI style */
}

.text {
    flex-grow: 1;
}

.selected-div {
    display: flex;
    flex-wrap: wrap; /* Allow items to wrap to the next line */
    gap: 5px; /* Add space between the items */
    max-width: 100%; /* Ensure it doesn't exceed container width */
}

.dark-box {
    background-color: #152c6b;
    color: #fff;
    padding: 5px 5px;
    font-size: 13px;
    border-radius: 4px;
    margin: 2px;
    flex-basis: 30%; /* Each box will take 30% of the row's width */
    text-align: center; /* Center the text in each box */
    box-sizing: border-box; /* Include padding in the width */
    white-space: nowrap; /* Prevent text wrapping inside the box */
    overflow: hidden; /* Ensure that long text is truncated */
    text-overflow: ellipsis; /* Add ellipsis for overflowing text */
}

/* success image style */
.success_image {
    text-align: center;
    margin-top: 40%;
}

.success_image img {
    width: 100px;
}

/* .marg-top {
    margin-top: 60%;
} */

.bg_image{
    width: 100%;
    height: 90vh;
    background:
        url('image/Ellipse-full.jpg'); /* Background image */
    background-size: cover; /* Ensure the image covers the entire area */
}

/* style for item content div -scroll  */
.item-container {
    max-width: 600px;
    margin: 15px auto;
    overflow: hidden;
}

.inner-item-container {
    max-height: 250px;
    overflow-y: auto;
    /* border-top: 1px solid #ddd; */
    padding-top: 10px;
    /* For Firefox */
    /* scrollbar-width: none;
    scrollbar-color: #8f8d8d #f1f1f1; */
}

/* Style the scrollbar */
::-webkit-scrollbar {
    width: 10px; /* Width of the scrollbar */
    height: 10px; /* Height for horizontal scrollbar */
}

/* Track */
::-webkit-scrollbar-track {
    background: #f4f4f4; /* Color of the scrollbar track */
    border-radius: 10px; /* Rounded corners */
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #aaaaaa; /* Color of the scrollbar handle */
    border-radius: 10px; /* Rounded corners */
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #999999; /* Darker color when hovered */
}

/* icon style */
.fas {
    font-size: 18px; 
    color: transparent; /* Make the inside transparent */
    -webkit-text-stroke: 1px #ffffff; /* Change the color of the outline */
    /* text-stroke: 2px #ff0000; This is the standard */
}

.fa_icon {
    color: #bec9f5;
}

/* start footer style */
footer {
    width: 60%;
    background-color: #3a3a3a;
    padding: 8px;
    border-radius: 5px 5px 0 0;
    margin: 15px auto; /* Center footer with top margin */
    text-align: center;
    position: relative; /* Avoid overlap issues */
    z-index: 1;
}

footer nav {
    display: flex;
    align-items: center;
}

footer nav a {
    color: #000;
    text-decoration: none;
    margin-left: 20px;
    margin-right: 20px;
}

footer nav a:hover {
    color: #ffffff;
    -webkit-text-stroke: 1px transparent;
}

/* Underline style when clicked */
footer .underlined::after {
    content: '';
    position: absolute;
    bottom: -2px;  /* Adjust for position */
    left: 0;
    width: 100%;
    height: 2px;  /* Line thickness */
    background-color: #ffffff;  /* Underline color */
}

.clicked {
    color: #ffffff;
    -webkit-text-stroke: 1px transparent;
}
/* end footer */
/* company name style */
.company-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 6px; /* Add some space above the company info */
    position: relative; /* Ensures it stays inside .container2 */
}

/* Ensure proper spacing between the company-info and footer */
.container2 > .company-info {
    margin-bottom: 20px; /* Space above footer */
}

.get-otp-button:disabled {
    background-color: #ccc;
    color: #666;
    cursor: not-allowed;
}
 
.alert{
    color: rgb(184, 13, 13);
}

.top-div {
    display: flex;
    justify-content: space-between; /* Align left and right */
    align-items: center; 
    padding: 5px 10px; 
    margin-bottom: 6px; 
}