/* Modal Customization */
.custom-modal {
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    font-family: "Poppins", sans-serif;
    border: none;
    overflow: hidden; /* Ensure contents stay within bounds */
}

.custom-modal .modal-header {
    background-color: #f8f9fa; /* Light background for the logo header */
    padding: 15px;
}

.custom-modal .logo {
    max-width: 150px; /* Limit the logo size */
    height: auto;
}

/* Body Content */
.custom-modal .modal-body {
    padding: 20px 30px;
}

.custom-modal .illustration {
    max-width: 100%; /* Ensure it fits the container */
    height: auto;
    max-height: 250px; /* Limit illustration height */
}

.custom-modal .modal-title {
    font-size: 18px;
    font-weight: bold;
    color: #847444; /* Customize title color */
}

.custom-modal .modal-message {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* Buttons Section */
.custom-modal .modal-footer {
    padding: 15px 30px;
    background-color: #f8f9fa;
}

.custom-modal .btn {
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 5px;
}

.custom-modal .btn-primary {
    background-color: #847444;
    border-color: #847444;
    color: #fff;
}

.custom-modal .btn-outline-secondary {
    border-color: #847444;
    color: #847444;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .custom-modal .modal-body {
        padding: 15px;
    }

    .custom-modal .modal-title {
        font-size: 16px;
    }

    .custom-modal .illustration {
        max-height: 200px;
    }

    .custom-modal .btn {
        font-size: 14px;
        padding: 10px 15px;
    }
}
