
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            justify-content: center;
            align-items: center;
        }
        
        .modal-content {
            background-color: white;
            border-radius: 8px;
            width: 90%;
            max-width: 500px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            overflow: hidden;
        }
        
        .modal-header {
            padding: 16px 20px;
            background-color: #4a6fa5;
            color: white;
            font-size: 18px;
            font-weight: bold;
        }
        
        .modal-body {
            padding: 20px;
        }
        
        .action-item {
            display: flex;
            align-items: center;
            padding: 12px 0;
            border-bottom: 1px solid #eee;
            cursor: pointer;
        }
        
        .action-item:last-child {
            border-bottom: none;
        }
        
        .action-icon {
            margin-right: 12px;
            font-size: 20px;
            color: #4a6fa5;
        }
        
        .action-text {
            font-size: 16px;
        }
        
        .description {
            margin-top: 20px;
            padding: 15px;
            background-color: #f9f9f9;
            border-radius: 6px;
            font-size: 14px;
            color: #555;
            line-height: 1.5;
        }
        
        .closeModal-btn {
            float: right;
            cursor: pointer;
        }
    