/* Modal Post Container Styles */
        .modal-post-container {
            display: none;
            position: fixed;
            z-index: 100000000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
            backdrop-filter: blur(5px);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .modal-post-container.show {
            display: flex;
            opacity: 1;
            align-items: center;
            justify-content: center;
        }

        .modal-content {
            background: rgba(24, 24, 24, 0.897);
            backdrop-filter: blur(8px) !important;
            border: 1px solid #2a2a2a;
            border-radius: 12px;
            margin: auto;
            padding: 0;
            border-radius: 12px;
            width: 90% !important;
            max-width: 500px !important;
            position: relative;
            transform: scale(0.8);
            opacity: 0;
            transition: all 0.3s ease;
            z-index: 100000001;
        }

        .modal-post-container.show .modal-content {
            transform: scale(1);
            opacity: 1;
        }

        .modal-header {
            padding: 25px 30px 0;
            margin-bottom: 20px;
            position: relative;
        }

        .modal-header h2 {
            color: #cacaca;
            font-size: 24px;
            font-weight: 600;
            margin: 0;
            padding-bottom: 5px;
        }

        .modal-header span {
            color: #4A90E2;
            font-size: 24px;
            font-weight: 600;
            margin: 0;
            padding-bottom: 20px;
        }

        .close {
            position: absolute;
            right: 20px;
            top: 20px;
            font-size: 28px;
            font-weight: bold;
            color: #a0a0a0 !important;
            cursor: pointer;
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .close:hover {
            color: #ffffff !important;
        }
        
        .modal-greeting {
            padding: 0 30px 10px;
            color: #bebebe;
            line-height: 1.6;
        }

        .modal-body {
            padding: 0 30px 30px;
            color: #555;
            line-height: 1.6;
            display: flex;

        }

        .modal-body p {
            margin-bottom: 15px;
        }

        .modal-footer {
            padding: 0px 30px 30px;
            text-align: right;
        }

