/* Global Swal2 Styles */
.swal2-popup {
    font-size: 14px !important; /* Adjust based on your site's default font size */
    color: #fff !important; /* Assuming white text color from the screenshot */
    background-color: #333 !important; /* Background color similar to your site */
}

.swal2-title {
    font-size: 24px !important; /* Adjust based on your site's title font size */
    font-weight: bold !important;
}

.swal2-content {
    font-size: 16px !important; /* Adjust based on your site's content font size */
}

.swal2-input,
.swal2-textarea,
.swal2-select,
.swal2-radio,
.swal2-checkbox,
.swal2-file {
    font-size: 14px !important; /* Input font size */
}

.swal2-actions .swal2-styled {
    font-size: 14px !important; /* Button font size */
}

.swal2-container {
    z-index: 9999 !important; /* Ensure the modal is on top */
}

/* Swal2 Specific Styles */
.swal2-styled.swal2-confirm {
    background-color: #1abc9c !important;
    border: none !important;
    border-radius: 5px !important;
    /* height: 47px !important; */
}

.custom-icon .swal2-icon-content {
    font-size: 5.5em !important;
    animation: ringBell 1s infinite !important;
    color: #f39c12 !important; /* Change this to your preferred bell color */
}

.swal2-icon.swal2-info {
    border-color: #f39c12 !important; /* Change this to your preferred bell border color */
}

@keyframes ringBell {
    0% { transform: rotate(0); }
    25% { transform: rotate(-30deg); }
    75% { transform: rotate(30deg); }
    100% { transform: rotate(0); }
}

/* Input and Button Styles */
.custom-button {
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 5px 10px;
    font-size: 14px;
}

.custom-input,
.swal2-input {
    background-color: #555;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 5px;
    font-size: 14px;
    width: 100%;
}

.swal2-input {
    border: 1px solid #777;
    margin: 5px 0;
    width: calc(100% - 45px); /* Adjust width to accommodate icon */
    display: inline-block;
    vertical-align: middle;
}

.input-icon {
    color: #fff;
    margin-right: 10px;
    vertical-align: middle;
    font-size: 18px;
}

/* Error Message Styling */
.error {
    color: #ff6b6b;
    margin-top: 5px;
    display: block;
}

/* Container Styles */
.custom-section {
    background: #444;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    flex: 1;
}

.custom-item {
    background: dimgray;
    color: white;
    margin-top: 10px;
    cursor: pointer;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
}

.custom-add-button {
    background-color: #048B9C;
    color: #fff;
    margin-top: 10px;
    cursor: pointer;
    border-radius: 5px;
    text-align: center;
    padding: 10px;
}

/* Additional Styles for Specific Elements */
.checkbox-list {
    overflow-y: auto;
    text-align: left;
}

.add-input-btn {
    background: #1abc9c;
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
    float: right;
    margin-top: -10px;
}

.checkbox-form {
    background: #FFEBEE;
    color: #D32F2F;
    margin-top: 10px;
    cursor: pointer;
    border-radius: 1px;
}

.add-list {
    height: 45px;
    line-height: 27px;
    background-color: #D32F2F;
    color: #fff !important;
}

.custom-modal-header {
    background-color: #007B8E; /* Set this to the color you want */
    color: #fff; /* White text color */
    padding: 10px 15px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.custom-modal-header h5 {
    margin: 0;
    font-size: 18px; /* Adjust as needed */
}

.custom-modal-close {
    color: #fff; /* Close button color */
    cursor: pointer;
}