.inner_container {
    display: flex;                /* Enable Flexbox */
    justify-content: center;      /* Center horizontally */
    align-items: center;          /* Center vertically */
    margin-top: 60%;
}

.logo1 {
    text-align: center;           /* Center the text below the logo */
}

.logo1 img {
    width: 90px;
    height: 40px;
    margin: 0;                    /* Remove unnecessary margins */
}

.welcome-text h2 {
    font-size: 24px;
    font-weight: none;
    color: #333;
}

.welcome-text h2 span {
    color: #0056ff;
    font-weight: none;
}

.welcome-text p {
    margin-top: 10px;
    font-size: 16px;
    color: #666;
}

.illustration{
    display: flex;          /* Enables Flexbox */
    justify-content: center; /* Centers content horizontally */
    align-items: center;
}

.illustration img {
    width: 250px;
    display: block; 
}

.sign-up p {
    font-size: 14px;
    color: #121111;
    margin-bottom: 10px;
}

.signup-button {
    width: 100%;
    display: inline-block;
    align-items: center;
    /* padding: 6px 0px; */
    padding: 8px 16px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 10px;
    color: #333;
    font-size: 15px;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.signup-button .icon {
    margin-right: 4px;
    font-size: 16px;
    color: #333;
}

.signup-button:hover {
    background-color: #f0f0f0;
}

@media (max-width: 768px) {
    .logo1 img {
        width: 80px;
    }

    .welcome-text h1 {
        font-size: 20px;
    }

    .illustration img {
        width: 180px;
    }

    .signup-button {
        font-size: 14px;
        padding: 8px 16px;
    }
}
/* end */

/* frame 85 */
.container1 {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    background-color: #fff;
    padding: 20px;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.location {
    width: calc(50% - 10px);
    margin-top: 20px;
    position: relative;
    text-align: center;
}

.location h2 {
    font-size: 18px;
}

.location p {
    color: grey;
    font-size: 14px;
}

.featured-section {
    display: flex;
    /* justify-content: space-between; */
    flex-direction: column;
    /* align-items: center; */
    margin-bottom: 8px;
}

.featured-slider {
    display: flex;
    overflow: hidden;
}

.featured-item {
    width: calc(50% - 10px);
    position: relative; /* Enables positioning for the overlay */
}

.featured-item img {
    width: 100%;
    height: auto;
    max-height: auto;
    border-radius: 5px;
}

.featured-item .overlay {
    position: absolute; /* Position the text over the image */
    top: 0; /* Align the overlay to the top of the image */
    left: 0;
    width: 100%;
    height: 100%; /* Cover the entire image */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center text vertically */
    align-items: center; /* Center text horizontally */
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent black background for readability */
    color: white; /* Make text visible against the dark background */
    border-radius: 5px; /* Match the image border radius */
}

.featured-item .overlay .description {
    font-size: 12px; /* Adjust as needed */
}

.featured-item .overlay .title {
    font-size: 14px; /* Adjust as needed */
    font-weight: bold;
    margin-bottom: 5px;
}

.past-tokens-section {
    text-align: center;
    margin: 0px 0;
}

.past-tokens-section img,
.current-tokens-section img {
    width: 150px;
    margin-left:80px;
    margin-right: 80px; 
}

.past-tokens-section p {
    font-size: 14px;
    color: grey;
    margin-top: 8px;
}

.retry-time {
    margin-top: 10px;
    font-size: 14px;
    color: #555;
}

.new-token-section{
    margin-bottom: 5px;
}

.date {
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: bold;
}

.input-group {
    margin-bottom: 10px;
}

.token-number {
    position: absolute;
    bottom: 5px;
    right: 10px;
}

.current-token-display {
    font-size: 14px;
    text-align: right;
}

.profile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
}

.profile-header button {
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
}

.profile-photo {
    position: relative;
    text-align: center;
    margin-bottom: 10px;
}
.profile-photo img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}
.profile-info {
    position: relative;
    padding: 10px 20px;
    background-color: #fff;
    /* border-radius: 8px; */
    /* margin-bottom: 8px; */
    /* border: 1px solid #e0e0e0; */
    margin: 8px 2px;
}
.profile-info span {
    display: block;
    /* margin-bottom: 5px; */
}

.profile-info .email-span div:first-child,
.profile-info .mobile-span div:first-child {
    font-size: 12px; /* Larger size for the second span */
    font-weight: normal; /* Not bold */
    color: #555;
}

.profile-info .email-span span:last-child,
.profile-info .mobile-span span:last-child {
    font-size: 15px; /* Larger size for the second span */
    font-weight: normal; /* Not bold */
    margin: 6px 2px
}

.profile-location {
    position: relative;
    background-color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    margin: 10px 0;
}

.profile-location span {
    display: block; /* Make labels display as block elements */
    margin-bottom: 5px; /* Space between labels */
}

.profile-location .location-span span:first-child,
.profile-location .district-span span:first-child,
.profile-location .favorite-span span:first-child {
    font-size: 13px; /* Smaller size for the first span */
    font-weight: normal; /* Not bold */
    /* color: #555; */
}

.profile-location .location-span span:last-child,
.profile-location .district-span span:last-child,
.profile-location .favorite-span span:last-child {
    font-size: 15px; /* Larger size for the second span */
    font-weight: normal; /* Not bold */
    margin: 6px 2px;
}

.profile-location a {
    text-decoration: none;
    font-size: 14px;
}

.fav-inner {
    display: flex; /* Use flexbox to align items */
    align-items: center; /* Center items vertically */
}

.fav-inner span {
    margin-right: 10px; /* Space between span and buttons */
}

.fav-inner button {
    margin-left: 5px; /* Space between buttons */
}

.inner_box{
    margin-top: 120px;
    position: absolute;
    background-color: #e9e7e7;
    height: 140px;
    z-index: -1;
}

.profile-photo .edit-icon {
    position: absolute;
    top: 30px;
    right: 150px;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
}
.profile-info input[type="text"], input[type="email"], select {
    width: 100%;
    padding: 6px;
    margin: 0px 8px;
    border: 1px solid #ccc;
    font-size: 15px;
    border-radius: 4px;
}

.profile-info input::placeholder {
    color: #888;
    font-style: italic;
}

/* payment style */
.payment-setup {
    padding: 10px;
    text-align: center;
}

.display {
    width: 100%;
    height: 40px;
    text-align: center;
    font-size: 22px;
    margin-bottom: 5px;
    border: none;
    margin-top: 20px;
    border-radius: 5px;
    padding-right: 30px; /* To make space for the rupee symbol */
    font-weight: bold;
}

.placeholder {
    font-size: 10px;
    color: #888;
    text-align: center;
}

.latest-payments-container {
    display: flex; /* Use flexbox for alignment */
    flex-wrap: wrap; /* Allow wrapping if there are too many boxes */
    gap: 10px; 
    margin: 6px 0;
    justify-content: center;
}

.latest-payments-box {
    display: inline-block; /* Make each box inline */
    border: 1px solid #ccc;
    padding: 5px;
    background-color: #f9f9f9;
    min-width: 40px;
}

.pay_buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.pay_buttons button, .submit-button {
    padding: 20px;
    font-size: 14px;
    border: none;
    border-radius: 5px;
    color: rgb(0, 0, 0);
    cursor: pointer;
    transition: background-color 0.3s;
    background-color: white;
    font-weight: bold;
}
/* end */

/* location style */
.location-item,
.alternate_location {
    display: flex;
    justify-content: space-between;
    padding: 5px;
    /* border-bottom: 1px solid #ddd; */
}

.location-item span,
.alternate_location span {
    display: block;
}

.location-item input,
.alternate_location input {
    display: block;
}

.location-item:hover,
.alternate_location:hover {
    background-color: #d2ddfc;
}

.favorite {
    display: flex;
    justify-content: space-between;
    border-bottom: none;
    background-color: #d2ddfc;
    padding: 5px;
}

.favorite span {
    display: block;
}

.favorite .fa {
    color: #244df1;
}
/* end */
.selected-token {
    position: relative; /* Enable positioning for child elements */
    border-radius: 5px;
    background-color: #ffffff;
    padding: 10px;
    color: #000000;
    box-shadow: 0 2px 5px rgba(141, 155, 182, 0.445); /* Set the box shadow */
    border-bottom: 2px solid #3c66e4; /* Add a border at the bottom */
    margin: 10px 0;
}
.loc_content{
    margin: 10px 0px;
    justify-content: space-between;
}

/* OTP input fields */
.otp-container {
    justify-content: center;
    align-items: center;
}

.otp-input {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.otp-input input {
    width: 42px;
    height: 46px;
    text-align: center;
    font-size: 18px;
    border: 1px solid #ccc;
    border-radius: 4px;
    transition: border-color 0.3s;
}

.otp-input input:focus {
    border-color: #007BFF;
    outline: none;
}

/* OTP instruction text */
p {
    font-size: 14px;
    color: #333;
    margin: 10px 0;
}

/* style for token service */
.category {
    margin-bottom: 15px;
}

.service-item {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.service-item span {
    margin-right: 10px;
    font-size: 15px;
    cursor: pointer;
}

/* Style for the checkbox */
.checkbox-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.checkbox-wrapper input[type="checkbox"] {
    appearance: none;
    width: 16px;
    height: 16px;
    background-color: #dae3fd;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    outline: none;
    position: absolute; /* Positioning the checkbox off the flow */
    left: 0; /* Align left */
}

.checkbox-wrapper input[type="checkbox"]:checked + .custom-checkbox {
    background-color: #0056b3; 
}

.custom-checkbox {
    width: 16px;
    height: 16px;
    background-color: #dae3fd;
    border-radius: 4px;
    position: relative;
    display: inline-block;
    transition: background-color 0.3s;
}

.checkbox-wrapper input[type="checkbox"]:checked + .custom-checkbox:after {
    content: "✓";
    color: white;
    position: absolute;
    top: 0;
    left: 4px; /* Adjust as needed for centering */
    font-size: 12px;
}

/* new  */
.token-block {
    border: 1px solid #ccc;
    background-color: #f9f9f9;
    position: relative;
    border: none;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 5px;
}

.current-tokens-section {
    position: relative; /* Keep this for flexibility */
    height: auto; /* Allow the section height to adjust based on content */
    /* padding: 16px; */
    overflow-y: auto; /* Allow scrolling if content exceeds the section */
}

/* Individual token card */
.current-token {
    position: relative; /* Change from absolute to relative */
    background: #121212;   
    color: #ffffff;        
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
    margin-bottom: 16px; /* Add spacing between tokens */
    width: 98%; /* Make the token card fill the parent container */
    transform: none; /* Remove the transform for normal flow */
    transition: none; /* Remove transition effects */
}

/* Buttons */
.token-actions {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.token-actions button {
    border: none;
    border-radius: 8px;
    padding: 2px 4px;
    font-size: 0.8rem;
    cursor: pointer;
}

.refresh-btn {
    background-color: #3b82f6;
    color: white;
}

.cancel-btn {
    background-color: pink; 
    color: rgb(0, 0, 0);
    border: none;
    border-radius: 10px;
    padding: 4px 6px;
    font-size: 0.8rem;
    cursor: pointer;
}

/* Hide the default radio button */
input[type="radio"] {
    -webkit-appearance: none; /* Remove default Webkit styling */
    -moz-appearance: none;    /* Remove default Firefox styling */
    appearance: none;
    width: 14px;
    height: 14px;
    border: 1px solid #ccc;
    background-color: #d3deff;
    border-radius: 50%;
    outline: none;
    margin-right: 10px;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Radio button hover effect */
input[type="radio"]:hover {
    border-color: #4C6EF5;
}

/* Radio button checked state */
input[type="radio"]:checked {
    border-color: #4C6EF5;
    background-color: #4C6EF5;
}

/* Add a dot inside the checked radio button */
input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background-color: #fff;
    border-radius: 50%;
}

/* Hide the spinner for all browsers */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield; /* For Firefox */
    appearance: textfield; /* Standard property */
}