
body {
    background-color: #a6a5b144;
}

.text {
    font-weight: 400;
    font-size: 16px;
    font-family: sans-serif;
}

.heading {
    font-weight: 400;
    font-size: 16px;
    font-family: sans-serif;
}

.other-input {
    display: none;
}

/* upload file */
.file-upload {
    border: 2px dashed #ccc;
    border-radius: 5px;
    text-align: center;
    padding: 30px;
    cursor: pointer;
    position: relative;
}

#fileInput {
    display: none;
}

.file-list {
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
}

.file-item {
    margin: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.file-item img,
.file-item .icon {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.file-name {
    margin-top: 5px;
    font-size: 14px;
    color: #333;
}


/* select country styling */
/* Override Choices.js styles to match Bootstrap */
.choices__inner {
    border-radius: 0.375rem; /* Bootstrap's default border-radius */
    border: 1px solid #ced4da; /* Bootstrap's default border color */
    padding: 0.375rem 0.75rem; /* Bootstrap's default padding */
    background-color: #fff; /* White background */
}

.choices__list--dropdown .choices__item {
    padding: 0.375rem 0.75rem; /* Match Bootstrap's dropdown padding */
}

.choices__input {
    color: #495057; /* Bootstrap's default text color */
}