.black{
    background-color: #131417;
}
.inner{
    background-color:  #212529;
    color: aliceblue;
    border: 1px solid #000000;
    box-shadow: 2px 10px 10px #111111;
    transition: all 0.2s ease-in-out;
    border-radius: 10px;
}
.inner:hover{
    box-shadow: 0px 10px 10px #000000;
}
.button{
    box-shadow: 2px 5px 5px #111111;
    transition: all 0.2s ease-in-out;
}
.button:hover{
    box-shadow: 0px 6px 6px #000000;
}

::-webkit-scrollbar {
    width: 8px;
  }
  
  ::-webkit-scrollbar-track {
    background: #131417;
  }
  
  ::-webkit-scrollbar-thumb {
    background: rgb(1, 80, 170);
    border-radius: 10px;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: rgb(0, 63, 136);
  }

    /* Styling for Forgot PW */
    body {
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 0;
  }
    .forgot-password-container {
      width: 300px;
      padding: 20px;
      border: 1px solid #ccc;
      border-radius: 5px;
      display: flex;
    }
    .forgot-password-form label,
    .forgot-password-form input {
      display: block;
      margin-bottom: 10px;
    }
    .forgot-password-form button {
      display: block;
      width: 100%;
      margin-top: 10px;
    }

/* Email List */
body {
    background-color: #f4f4f4;
}

.container {
    margin-top: 40px;
}

.table {
    background-color: #fff;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}

.table th, .table td {
    vertical-align: middle;
}

.add-contact-btn, .import-list-btn {
    margin-top: 20px;
}

.modal-dialog {
    max-width: 500px;
}

.modal-content {
    border-radius: 10px;
}

.modal-header {
    background-color: #f0f0f0;
    border-radius: 10px 10px 0 0;
}

.modal-title {
    font-weight: bold;
}

.form-group label {
    font-weight: bold;
}

.modal-footer {
    border-top: none;
}

.btn-primary {
    background-color: #007bff;
    border: none;
}

.btn-primary:hover {
    background-color: #0056b3;
}



  
  
  