.form-container {
    max-width: 100%;
    margin: 0px !important;
    padding: 10px !important;
}

.form-section {
    background-color: #daedff;
    padding: 10px;
    border-radius: 8px;
}

.section-title {
    margin: 0 0 5px 0;
    font-size: 18px;
    color: #333;
    text-align: center;
    border-bottom: 2px solid #daedff;
    padding-bottom: 3px;
}

.form-group {
    margin-bottom: 8px;
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group select {
    padding: 6px;
    border: 1px solid #ccc;
    color: #000;
    border-radius: 4px;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
}

.form-group input::placeholder,
.form-group select option[disabled][selected] {
    font-size: 14px;
    color: #000;
}

.button-container {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.button-container button {
    padding: 5px 10px;
    background-color: #ff7f00;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.button-container button:hover {
    background-color: #E06E00;
}

.error {
    color: red;
    text-align: center;
    margin-top: 5px;
    white-space: pre-wrap;
}

/* Style cho modal nội bộ */
#modal-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

#modal-container.show {
    display: flex !important;
}

#modal-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    /* max-width: 400px; */
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

#modal-content h3 {
    margin: 0 0 10px;
    font-size: 18px;
    color: #333;
}

#modal-content label {
    display: block;
    margin: 10px 0;
}

#modal-content button {
    cursor: pointer;
}
.swal2-container {
    padding: 0 !important;
}

.swal2-html-container {
    padding: 0 !important;
}