.body-emails{
    background-color: var(--color-background);
    color: #1f1f1f;
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
  }
  
  .email-header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
  }
  
  .emails-logout-container {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
  }
  
  .emails-title {
    margin-bottom: 20px;
    font-size: 20;
  }
  
  .emails-welcome-message h2{
    margin-bottom: 20px;
    font-size: 16px;
    text-align: center;
  }
  
  .email-actions-container {
    background-color: var(--color-container);
    padding: 20px;
    border-radius: 8px;
  }
  
  .email-container-title {
    color: var(--color-titles-container);
    margin-bottom: 20px;
  } 
  
  .email-container{
    width: 90%;
    margin: 0 auto;
    padding: 20px;
    color: #000000;
  }
  
  .title-emails {
    text-align: center;
    margin-bottom: 20px;
  }
  
  .buttons-create-emails { 
    display: flex;
    justify-content: space-evenly;
    width: 100%;
    max-width: 350px;
    margin: 20px 0;
    padding: 25px;
    border-radius: 5px;
  }
  
  .table-emails {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
  }
  
  .table-emails th, td {
    padding: 7px;
    border: 1px solid #a3a3a3;
    text-align: center;
  }
  
  .table-emails th {
    background-color: #2e62a7;
  }
  
  
  
  .modal-emails {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: scroll;
    background-color: rgba(0, 0, 0, 0.4);
    padding-top: 20px;
  }
  
  .modal-content-emails {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
  }
  
  .close-email {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }
  
  .close-email:hover,
  .close-email:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }
  
  .modal-title{
    padding: 10px;
    font-size: 18px;
  }
  
  .email-form{
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
  }
  
  .form-email-first-fields{
    display: flex;
    gap: 40px;
    justify-content: start;
  }
  
  .form-label-email{
    font-size: 18px;
    font-weight: 500;
    color: #212121;
    margin: 20px 60px 0 0;
  }
  
  .form-input-email{
    padding: 5px;
    font-size: 14px;
    border-radius: 8px;
    border: 1px solid #848484;
    width: 100%;
    max-width: 350px;
  }
  
  .select-email{
    padding: 5px;
    font-size: 14px;
    border-radius: 8px;
    border: 1px solid #848484;
    width: 100%;
    max-width: 350px;
    margin-bottom: 15px;
  }
  
  .image-preview-email{
    width: 100%;
    max-width: 350px;
    margin-bottom: 15px;
    max-height: 80px;
  }
  
  .form-label-email-upload{
    font-size: 18px;
    font-weight: 500;
    color: #212121;
    margin: 20px 60px 0 0;
  }

  @media (min-width: 768px) {
    .email-header {
      display: flex;
      flex-direction: row;
    }
    
    .emails-title {
      font-size: 28px;
    }
    
    .emails-welcome-message h2 {
      font-size: 20px;
      text-align: left;
    }
    
    .email-btn {
      font-size: 18px;
    }
    
    .email-btn {
      flex: 1 1 calc(25% - 20px);
      max-width: calc(25% - 20px);
    }
  
    .buttons-create-emails { 
      display: flex;
      justify-content: space-evenly;
      width: 80%;
      margin: 10px 0;
      border-radius: 5px;
    }
    }
  