@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

* {
    font-family: 'Inter', sans-serif;
}

body {
    margin: 0;
    min-height: 100vh;
}

.app-header-wrapper {
   background-color: #1D4ED7;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.brand-greeting {
    font-size: 2.5rem;
    font-weight: 900;
    color: #000000;
    line-height: 1.1;
}

.login-option-primary {
    background-color: #0047AB;
    color: white;
    padding: 0.875rem 2.5rem;
    font-weight: 600;
    border-radius: 9999px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    font-size: 1.125rem;
    border: none;
    cursor: pointer;
}

.action-submit-btn {
    background-color: #0047AB;
    color: white;
    opacity: 0.5;
    pointer-events: none;
    font-weight: 700;
    border-radius: 4rem;
    width: 100%;
    padding: 0.90rem 0;
    transition: opacity 0.1s;
    border: none;
    cursor: pointer;
}

.action-submit-btn.ready {
    opacity: 1;
    pointer-events: auto;
}

.phone-input-box {
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    padding: 0.5rem 0.75rem;
    font-size: 1.25rem;
    font-weight: 600;
    height: 45px;
    box-sizing: border-box;
}

.dialog-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 50;
    display: none;
    align-items: center;
    justify-content: center;
}

.tick-circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke: #4BB543;
    fill: none;
    animation: strokeAnim 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.tick-check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: strokeAnim 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes strokeAnim {
    100% {
        stroke-dashoffset: 0;
    }
}

.main-content {
    display: none;
}

.main-content.show {
    display: block;
}

/* Tailwind CSS classes */
.min-h-screen {
    min-height: 100vh;
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.flex-col {
    flex-direction: column;
}

.space-x-2 > * + * {
    margin-left: 0.5rem;
}

.space-x-4 > * + * {
    margin-left: 1rem;
}

.space-y-2 > * + * {
    margin-top: 0.5rem;
}

.p-4 {
    padding: 1rem;
}

.p-6 {
    padding: 1.5rem;
}

.pt-8 {
    padding-top: 2rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 0.75rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-10 {
    margin-bottom: 2.5rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.mt-8 {
    margin-top: 2rem;
}

.mr-1 {
    margin-right: 0.25rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.w-full {
    width: 100%;
}

.w-64 {
    width: 16rem;
}

.w-8 {
    width: 2.6rem;
}

.w-6 {
    width: 1.5rem;
}

.h-8 {
    height: 2.6rem;
}

.h-6 {
    height: 1.5rem;
}

.h-10 {
    height: 2.5rem;
}

.max-w-sm {
    max-width: 24rem;
}

.rounded-full {
    border-radius: 9999px;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.rounded-xl {
    border-radius: 0.75rem;
}

.border-b {
    border-bottom-width: 1px;
}

.border-gray-100 {
    border-color: rgb(243 244 246);
}

.bg-white {
    background-color: rgb(255 255 255);
}

.bg-gray-200 {
    background-color: rgb(229 231 235);
}

.bg-blue-600 {
    background-color: rgb(37 99 235);
}

.bg-blue-50\/50 {
    background-color: rgba(239, 246, 255, 0.5);
}

.text-gray-600 {
    color: rgb(75 85 99);
}

.text-gray-700 {
    color: rgb(55 65 81);
}

.text-gray-800 {
    color: rgb(31 41 55);
}

.text-gray-900 {
    color: rgb(17 24 39);
}

.text-gray-500 {
    color: rgb(107 114 128);
}

.text-blue-600 {
    color: rgb(37 99 235);
}

.text-red-600 {
    color: rgb(220 38 38);
}

.text-green-600 {
    color: rgb(22 163 74);
}

.text-white {
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.text-center {
    text-align: center;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
}

.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

.font-extrabold {
    font-weight: 800;
}

.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.shadow-md {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.animate-spin {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.hidden {
    display: none;
}

.cursor-pointer {
    cursor: pointer;
}

.hover\:bg-blue-700:hover {
    background-color: rgb(29 78 216);
}

.transition {
    transition: all 0.15s ease;
}

.focus\:outline-none:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
}

.border-blue-600 {
    border-color: rgb(37 99 235);
}

.border-b-2 {
    border-bottom-width: 2px;
}

.single-operator {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.single-operator label {
  margin-bottom: 10px;
}

.single-operator img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: contain;
}
.search-input {
    background: none;
    border: none;
    width: 100%;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
}

.custom-search-box {
    background-color: #0A2986;
    border-radius: 3rem;
    padding: 0.1rem 1rem;
    height: 40px;
    min-width: 0;
   margin-left: 10px;
}