/* Modal Background */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
        }

        /* Modal Content */
        .modal {
            background: #333;
            width: 90%;
            max-width: 500px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0px 0px 25px 25px rgba(0, 0, 0, 0.2);
            text-align: center;
            position: relative;
        }

        .modal-header {
            background-color: #333;
            color: rgba(195,195,195);
            padding: 15px;
            font-size: 1.2rem;
            font-weight: bold;
        }

        .modal-body {
            padding: 20px;
            color: rgba(195,195,195);
            font-size: 1rem;
            line-height: 1.5;
        }

        .modal-footer {
            padding: 20px;
            display: flex;
            justify-content: center;
        }

        .modal-footer a {
            text-decoration: none;
            color: rgba(195,195,195);
            padding: 10px 20px;
            font-size: 1rem;
            font-weight: bold;
            border-radius: 5px;
            transition: color 0.3s;
        }

        .modal-footer a:hover {
            color: fff !important;
        }

        /* Close Icon */
        .modal-close {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 1.5rem;
            color: rgba(195,195,195);
            cursor: pointer;
            transition: color 0.3s;
        }

        .modal-close:hover {
            color: #fff;
        }