.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(2px);
    z-index: 9998;
  }

  .modal-content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 10px;
    padding: 24px;
    width: 90%;
    max-width: 400px;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  }

  .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .modal-title {
    font-size: 18px;
    font-weight: bold;
    margin: 0;
  }

  .modal-close {
    background: none;
    border: none;
    cursor: pointer;
  }

  .modal-description {
    margin-top: 12px;
    font-size: 14px;
    color: #555;
  }

  .modal-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
    gap: 10px;
  }

  .modal-button {
    padding: 8px 16px;
    border-radius: 4px;
    border: none;
    font-weight: bold;
    cursor: pointer;
  }

  .modal-button.cancel {
    background-color: #e5e5e5;
    color: #333;
  }

  .modal-button.cancel:hover {
    background-color: #d4d4d4;
  }

  .modal-button {
    color: white;
  }

  .modal-button.confirm:hover {
    background-color: #b91c1c;
  }
