#planDetailsContainer .card-body.active {
    border: 3px solid #195c8f80; /* Blue border for the selected card */
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.5); /* Shadow effect */
    color: #000;
}
.operator-img {
    width: 80;
    height: 80px;
    border: 1px solid transparent;
    padding: 13px;
    cursor: pointer;
    background: #fff;
    object-fit: contain;
    transition: transform 0.3s ease;
}
.operator-img.active {
    /*border-color: #007bff;
        box-shadow: 0 3px 10px 2px #444;
        border:3px solid #00cce9;*/
    border: 1px solid #007bff;
    background-color: #e3f3ff;
}
#planDetailsContainer .card-body {
    min-height: 133px;
}
.flag {
    display: inline-block;
    width: 32px; /* Adjust the width as needed */
    height: 32px; /* Adjust the height as needed */
    background-size: cover;
    vertical-align: middle;
    margin-right: 8px; /* Adjust the margin as needed */
}
.cursor-pointer {
    cursor: pointer;
}
#mobile_number-error {
    position: absolute;
    top: 60px;
    background-color: white;
    color: red !important;
    font-size: 14px;
    padding: 6px;
    border-radius: 4px;
    width: 100%;
}

/* Basic styling for the select box */
.recharge_home_dropdown {
    padding: 10px; /* Add padding for better visual */
    background-color: #f8f9fa; /* Light gray background */
    border: 1px solid #ced4da; /* Light border */
    border-radius: 5px; /* Rounded corners */
    font-size: 16px; /* Larger text */
    color: #495057; /* Text color */
    appearance: none; /* Remove default arrow */
    -webkit-appearance: none; /* Remove default arrow in Safari */
    -moz-appearance: none; /* Remove default arrow in Firefox */
    background-image: url("/path/to/custom-arrow-icon.svg"); /* Custom dropdown arrow icon */
    background-position: right 10px center;
    background-repeat: no-repeat;
}

/* Add hover effect */
.recharge_home_dropdown:hover {
    background-color: #e9ecef;
    border-color: green; /* Blue border on hover */
}

/* Style for the options in dropdown */
.recharge_home_dropdown option {
    padding: 8px;
    color: #333; /* Text color inside options */
    background-color: #fff; /* White background */
}

/* Add focus effect */
.recharge_home_dropdown:focus {
    outline: none; /* Remove default outline */
    border-color: green; /* Blue border on focus */
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25); /* Add blue shadow */
}
/* Style for the select box heading */

/* Style for form labels */
.form-title-label {
    font-size: 1.25rem; /* Adjust the font size to make it more prominent */
    font-weight: 600; /* Semi-bold font weight */
    margin-bottom: 8px; /* Space between label and form element */
    display: block; /* Ensures the label is on its own line */
    text-transform: capitalize; /* Capitalizes the first letter of each word */
    letter-spacing: 0.5px; /* Slight spacing between letters for clarity */
    font-family: "Arial", sans-serif; /* Sets a clean, professional font */
    color: white;
}

/* Optional: Adding a focus style for associated form elements */
input:focus + .form-title-label,
select:focus + .form-title-label {
    color: #007bff; /* Changes label color when associated element is focused */
}

/* Container design */
.recharge_container_left {
    background-color: #f8f9fa; /* Light background for the container */
    border-radius: 8px; /* Rounded corners */
    padding: 20px; /* Padding inside the container */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

/* Step heading */
.recharge_container_left h3 {
    font-size: 1.75rem; /* Large font for the heading */
    font-weight: 600; /* Bold font */
    color: #333; /* Dark text color for contrast */
    margin-bottom: 10px; /* Spacing below the heading */
}

/* Subtext or description */
.recharge_container_left p {
    font-size: 1rem; /* Regular font size for the paragraph */
    color: #6c757d; /* Muted color for subtext */
    margin-bottom: 0; /* Remove default margin */
}

/* General typography improvements */
.recharge_container_left h3 span {
    font-weight: 400; /* Make "Step 1:" lighter */
    color: #007bff; /* Use blue color for emphasis */
}

/* Responsive design */
@media (max-width: 768px) {
    .recharge_container_left {
        padding: 15px; /* Adjust padding for smaller screens */
    }

    .recharge_container_left h3 {
        font-size: 1.5rem; /* Reduce font size for the heading */
    }

    .recharge_container_left p {
        font-size: 0.9rem; /* Smaller paragraph text */
    }
}

.operator-card {
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 15px;
    background-color: #fff;
}

.logo-img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
}

.operator-card + .operator-card {
    margin-top: 20px;
}

.country-selector {
    display: flex;
    align-items: center; /* Center align items vertically */
    margin-top: 10px; /* Add some space above */
    position: relative;
}
.country-selector .flagImgup {
    position: absolute;
    left: 90%;
    top: 5px;
}
#flagImage {
    padding: 2px; /* Padding inside the border */
}

#flagImage.show {
    display: inline; /* Show the image when needed */
}

/* Add hover effect */
.flagImg:hover {
    background-color: #e9ecef;
    border-color: #80bdff; /* Blue border on hover */
}
/* Basic styling for the select box */

.planiconupdown {
    font-size: 10px;
    background-color: #ebebeb;
    border-radius: 10px;
    padding: 6px 12px 6px 12px;
}

#planDetailsContainer .card {
    transition: transform 0.3s ease;
}

#planDetailsContainer .card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
    /* border-bottom: 2px solid rgb(2, 2, 163); */
}

.show-all {
    text-decoration: none;
    border-bottom: 1px solid;
}
