  .modal {
    font-family: Arial, sans-serif;
  }

  .modal .modal-content {
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  .modal .modal-header {
    background-color: #f8f9fa;
    border-bottom: none;
  }

  .modal .modal-title {
    color: #333;
  }

  .modal .modal-body {
    padding: 20px;
    background-color: #fff;
  }

  .modal .modal-footer {
    border-top: none;
    background-color: #f8f9fa;
  }

  .modal .btn-primary {
    background-color: #007bff;
    border-color: #007bff;
  }

  .modal .btn-primary:hover {
    background-color: #0056b3;
  }

  .btn-close {
    font-size: 20px;
    color: #333;
    background-color: transparent;
    border: none;
    cursor: pointer;
    transition: color 0.3s;
  }
  
  .btn-close:hover {
    color: #ff0000; 
  }


  
  