    /* Styles for the Modal-Like Card (Overlay) */
        .modal-like-overlay-card-wrapper {
            position: fixed; /* Stays in place relative to the viewport */
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.6); /* Slightly darker overlay */
            display: flex; /* For centering the actual card */
            justify-content: center;
            align-items: center; /* Vertically and horizontally center */
            z-index: 1050; /* A high z-index to ensure it's above everything else */
        }

        .modal-like-card {
            background-color: #ffffff;
            border-radius: 8px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.4); /* Stronger shadow for more prominence */
            padding: 40px; /* More padding for a bolder look */
            width: 90%;
            max-width: 450px; /* Slightly narrower to emphasize the alert */
            box-sizing: border-box;
            text-align: center;
            position: relative; /* For close button positioning */
            transform: scale(1);
            transition: transform 0.3s ease-out;
        }

        /* Styles for the icon */
        .modal-like-card .icon-display {
            font-size: 4rem; /* Larger icon */
            margin-bottom: 20px;
            color: #dc3545; /* Red color for warning/suspension */
            /* Or use a warning orange: #ffc107; */
        }
        .modal-like-card .icon-display.bi-envelope-check {
             color: #28a745; /* Green for check email */
             font-size: 2.5rem; /* Smaller for secondary icon */
             margin-top: 15px;
        }


        .modal-like-card h2 {
            color: #333;
            margin-bottom: 15px;
            font-size: 2.2em; /* Larger heading */
            line-height: 1.2;
        }

        .modal-like-card p {
            color: #666;
            line-height: 1.6;
            margin-bottom: 25px; /* More space before button */
            font-size: 1.1em;
        }

        /* Call to Action Button */
        .card-action-button {
            display: inline-flex; /* Use flex to center icon and text */
            align-items: center;
            padding: 12px 30px;
            background-color: #2a2f5b; /* Dark blue for primary action */
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1.1em;
            font-weight: bold;
            text-decoration: none; /* If it's a link */
            transition: background-color 0.3s ease;
        }
        .card-action-button i {
            margin-right: 8px; /* Space between icon and text */
            font-size: 1.2em;
        }

        .card-action-button:hover {
            background-color: #1a1e3c; /* Darker blue on hover */
            color: white; /* Keep text white on hover */
        }

        /* Optional: Close button */
        .card-close-btn {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 1.8rem; /* Larger close icon */
            color: #aaa;
            text-decoration: none;
            cursor: pointer;
            line-height: 1;
            transition: color 0.2s ease;
        }

        .card-close-btn:hover {
            color: #333;
        }