.main-form__item {
    margin-bottom: 1.5rem;
    padding: 1rem;
    border: 1px solid #f1f1f1;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}


/* Styling for the default region (e.g., Armenia) */
#default-region {
    font-size: 1.5rem;
    font-weight: bold;
    color: #000000;
    margin-bottom: 1rem;
}

/* Label for the select element */
.main-form__item label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

/* Styling for the select dropdown */
.form-select {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 2px solid #000000;
    border-radius: 8px;
    background-color: #fff;
    color: #333;
    appearance: none; /* Remove default styling */
    outline: none;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

/* Hover and focus effects for the select */
.form-select:hover {
    border-color: #0056b3;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.form-select:focus {
    border-color: #0056b3;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
}

/* Styling for optgroup labels */
.form-select optgroup {
    font-weight: bold;
    color: #000000;
    padding: 0.5rem 1rem;
}

/* Styling for options inside optgroup */
.form-select optgroup option {
    font-weight: normal;
    color: #333;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* Add custom arrow icon to the select dropdown */
.form-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath fill='%23007bff' d='M5 6L0 0h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 10px 6px;
}

/* Optional: Adding spacing between form elements */
.main-form__item {
    margin-bottom: 2rem;
}

/* Style for disabling the select option (if needed) */
.form-select[disabled] {
    background-color: #e9ecef;
    color: #6c757d;
    cursor: not-allowed;
}
.address-suggestions-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    position: absolute;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.address-suggestions-list li {
    padding: 10px;
    cursor: pointer;
}

.address-suggestions-list li:hover {
    background-color: #f0f0f0;
}
#address-input , #specific-address{
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 20px;
    height: 80px;
    padding: 5px;
}
#specific-address{
    margin-top: 10px;
}
