#user-addresses-form {
    background-color: #ffecec; /* Light red background */
    border-radius: 8px; /* Rounded borders */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Slight shadow for depth */
    padding: 15px; /* Spacing inside the form */
    max-width: 500px; /* Maximum width of the form */
    margin: auto; /* Center the form */
}

#user-addresses-form .form-group label {
    display: block; /* Ensure the label takes up the full width */
}

#user-addresses-form .form-control {
    width: 100%; /* Make inputs take full width */
    border-radius: 8px; /* Rounded corners for inputs */
    border: 1px solid #ddd; /* Border color */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
}

#user-addresses-form .form-group {
    margin-bottom: 15px; /* Space between form groups */
}

#user-addresses-form .checkbox-label {
    display: inline-block; /* Display label inline */
    margin-left: 5px; /* Space between checkbox and label */
}

#user-addresses-form .form-group input[type="checkbox"] {
    display: inline-block; /* Display checkbox inline */
    width: auto; /* Override full width for checkboxes */
    margin-top: 0; /* Align with the label */
    margin-right: 10px; /* Space after checkbox before the label */
}

#user-addresses-form button {
    background-color: #0056b3; /* Button color */
    color: white; /* Button text color */
    border: none; /* Remove default border */
    border-radius: 8px; /* Rounded borders for the button */
    padding: 10px 15px; /* Padding inside the button */
    margin-top: 10px; /* Space above the button */
    cursor: pointer; /* Cursor indicates button */
    width: auto; /* Auto width for buttons */
    margin-bottom: 10px; /* Space below buttons */
}

#user-addresses-form button:hover {
    background-color: #00408a; /* Button hover color */
}

#user-addresses-form .intl-tel-input {
    width: 100%; /* Make international telephone input take full width */
    border-radius: 8px; /* Rounded corners for telephone input */
}