 .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            justify-content: center;
            align-items: center;
            z-index: 9999;
        }
        .modal-content {
            background: #fff;
            border-radius: 4px;
            width: 300px;
            max-height: 400px;
            overflow-y: auto;
            padding: 20px;
        }
        .modal-header, .modal-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid #ddd;
            padding-bottom: 10px;
        }
        .modal-body {
            margin: 10px 0;
        }
        .modal-close {
            cursor: pointer;
            font-size: 18px;
            color: #666;
        }
        .modal-close:hover {
            color: #333;
        }
        .select-group {
            margin-bottom: 10px;
        }
        .select-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: bold;
        }
        .select-group select {
            width: 100%;
            padding: 8px;
            border-radius: 4px;
            border: 1px solid #ccc;
        }
        .d-button{
        width: 30%;
    height: 30px;
    font-size: 16px;
    border: 1px;
    border-radius: 5px;
    background-color: #fe5b00;
    color: #fff;
    }