.cmodal {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 90%;
            max-width: 500px;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            padding: 20px;
            z-index: 1000;
	    color: black;
        }
        .cmodal-header, .cmodal-footer {
            text-align: center;
            padding: 10px;
            border-bottom: 1px solid #ddd;
        }
        .cmodal-footer {
            border-top: 1px solid #ddd;
            border-bottom: none;
        }
        .cmodal-header h2 {
            margin: 0;
            font-size: 1.5em;
        }
        .cmodal-body {
            padding: 20px;
        }
        .cmodal-body p {
            margin: 10px 0;
        }
        .cmodal input, .cmodal textarea, .cmodal button {
            width: 100%;
            margin-bottom: 10px;
            padding: 10px;
            font-size: 1em;
            border: 1px solid #ccc;
            border-radius: 4px;
        }
        .cmodal button {
            background-color: #007bff;
            color: white;
            cursor: pointer;
            border: none;
        }
        .cmodal button:hover {
            background-color: #0056b3;
        }
        .cmodal .cclose {
            background-color: #f44336;
            color: white;
            float: right;
            border: none;
            padding: 5px 10px;
            border-radius: 50%;
            font-size: 1em;
            cursor: pointer;
        }
        .cmodal .close:hover {
            background-color: #d32f2f;
        }
        .cmodal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            display: none;
            z-index: 999;
        }
