
   #sakaFormcontainer {
        max-width: 400px;
        margin: auto;
        background: #fff;
        padding: 20px 25px;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.281);
        width: 400px;
        border: 2px solid #e3d0f7;
  border-radius: 20px;
    }

h2 {
    text-align: center;
    color: #4cc9f0; /* Neon Blue */
    margin-bottom: 30px;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-size: 16px;

}

label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: #374151;
}

input, select {
    width: 100%;
    padding: 9px 11px;
    border: 1.5px solid rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    font-size: 15px;
    margin-bottom: 15px;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.5);
    color: #111827;
    transition: all 0.25s ease;
}

input:focus, select:focus {
    border-color: #4cc9f0;
    outline: none;
    box-shadow: 0 0 8px rgba(76, 201, 240, 0.4);
}

.suggestions {
    position: absolute;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-top: none;
    max-height: 150px;
    overflow-y: auto;
    width: calc(100% - 2px);
    z-index: 10;
    border-radius: 0 0 6px 6px;
    color: #111827;
}

.suggestions div {
    padding: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.suggestions div:hover {
    background-color: rgba(76, 201, 240, 0.1);
}

#submitBtn {
    background: linear-gradient(90deg, #4cc9f0, #4361ee);
    color: white;
    padding: 11px;
    width: 100%;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

#submitBtn:hover {
    background: linear-gradient(90deg, #4895ef, #3a0ca3);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(72, 149, 239, 0.4);
}

/* Wrapper for suggestion box */
.field-wrapper {
    position: relative;
}

/* 📱 Mobile adjustments */
@media (max-width: 600px) {
    body {
        padding: 15px;
    }

#sakaFormcontainer {
        max-width: 100%;
        padding: 15px 18px;
        border-radius: 10px;
        
    }

    h2 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    label {
        font-size: 0.9rem;
    }

    input, select {
        padding: 7px 9px;
        font-size: 14px;
        margin-bottom: 12px;
    }

    button {
        padding: 9px;
        font-size: 14px;
    }

    .suggestions {
        max-height: 120px;
        font-size: 14px;
    }
}






#resultBox {
    opacity: 0;
    transition: opacity 0.4s ease;
}

#resultBox[style*="display: block"] {
    opacity: 1;
}



#showFormBtn:hover {
    background: linear-gradient(90deg, #f2981a 100%, #f4c03e 0%);
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(0,0,0,0.15);
}





#showformbtndiv1{width: 100%;



}



#resultBox{
            margin-top:15px;
        padding:10px;
        border-radius:6px;
        background:#f0f4ff;
        color:#333;
        font-weight:500;
        display:none;
}


#sakagegocon {
       /* enable flexbox */
  
    align-items: center;    /* vertically center content (optional) */
    gap: 10px;   
    max-width: 450px;  
                display: flex;
            flex-direction: column;   
            position: absolute;
                  z-index: 2000;
}



    /* Spinner container */
#loadingOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

/* Spinner animation */
.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #0078d7;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }}

    