

/* Main Modal Content Style */
.custom-modal-content {
    background-color: rgba(33, 37, 41, 0.85); /* Slightly opaque dark background */
    color: white;
    border-radius: 10px;
    border: 1px solid #E33C2B;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); /* Soft shadow for depth */
}

/* Header Style with Enhanced Contrast */
.custom-modal-header {
    border-bottom: 1px solid #E33C2B;
    color: white;
    background: rgba(0, 0, 0, 0.3);
}

.custom-modal-header .modal-title {
    color: #E33C2B;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8); /* Subtle shadow for readability */
}

/* Close Button Enhancements */
.custom-close {
    color: #E33C2B;
    font-size: 1.5rem;
    opacity: 0.9;
    transition: color 0.3s;
}

.custom-close:hover {
    color: white;
    opacity: 1;
}

/* Body Content Styling for Clear Message */
.custom-modal-body {
    padding: 20px;
    font-size: 1.1rem;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); /* Shadow for text clarity */
}

/* Footer Button Styling */
.custom-modal-footer {
    border-top: 1px solid #E33C2B;
}

.custom-btn {
    background-color: #E33C2B;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    transition: background-color 0.3s;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2); /* Soft shadow for depth */
}

.custom-btn:hover {
    background-color: #e60000;
    color: white;
}


