/* Basic reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Container for the page */
  .container {
    font-family: 'Arial', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: #f3f4f7;
    color: #333;
  }
  
  /* Title styling */
  .title {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #444;
  }
  
  /* Button to trigger the modal */
  .show-modal-button {
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 12px 25px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .show-modal-button:hover {
    background-color: #45a049;
  }
  
  /* Overlay for dark background */
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease-out;
    z-index: 1000;
  }
  
  /* Modal styling */
  .modal {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    width: 400px;
    padding: 30px;
    text-align: center;
    animation: scaleUp 0.3s ease-out;
  
  }
  
  /* Modal header with icon */
  .modal-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  
  .icon {
    color: #f39c12;
    font-size: 2.5rem; /* Adjust size as needed */
  }
  
  .modal h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
  }
  
  .modal-message {
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 20px;
  }
  
  /* Actions section (buttons) */
  .actions {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    
  }
  
  /* Confirm button */
  .confirm {
    background-color: #d9534f;
    color: white;
    border: none;
    border-radius: 30px;
    padding: 12px 25px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  
  .confirm:hover {
    background-color: #c9302c;
  }

  .loginconfirm {
    background-color: #0cd36f;
    color: white;
    border: none;
    border-radius: 30px;
    padding: 12px 25px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .loginconfirm:hover {
    background-color: #09a040;
  }
  
  /* Cancel button */
  .cancel {
    background-color: #f0f0f0;
    color: #555;
    border: none;
    border-radius: 30px;
    padding: 12px 25px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .cancel:hover {
    background-color: #e0e0e0;
  }
  .done{
    background-color: #60c74d;
    color: white;
    border: none;
    border-radius: 30px;
    padding: 12px 25px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    margin: 0;
    margin: auto;
    display: flex; /* Makes the button a flex container */
    justify-content: center;
    align-items: center;
    
  }
  
  /* Animations */
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  @keyframes scaleUp {
    from {
      transform: scale(0.8);
    }
    to {
      transform: scale(1);
    }
  }
  
