html {
    height: 100vh;
}

body {
    margin: 0;
    background-color: #b6e0ee;
    height: 100%;
    overflow: hidden;
    font-family: 'Barlow Semi Condensed', sans-serif;
}

.bds-litige {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10% 10% 0 10%;
}

.logo-bds {
    width: 100%;
    height: auto;
    max-width: 582px;
}

h1 {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 2.5em;
    letter-spacing: 1px;
    margin-bottom: 0;
}
h2 {
    font-weight: 400;
    font-size: 18px;
    margin: 1rem 0;
}

/* FORM */
form {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
}
.form-group {
    display: flex;
    flex-direction: column;
    margin: 20px 0;
    gap: 10px;
    width: 100%;
    align-items: center;
}

.iti.iti--allow-dropdown.iti--show-flags {
    display: flex;
    font-size: 18px;
    height: 60px;
    width: 350px;
}
#sms_request_phoneNumber {
    width: 100%;
    font-size: 18px;
    /* border-radius: 4px; */
}

button.btn, a.btn {
    background-color: #000000 !important;
    color: #ffffff !important;
    padding: 12px 10px !important;
    border-radius: 25px;
    text-transform: uppercase;
    font-weight: bold;
    border: none;
}
button.btn:hover {
    cursor: pointer;
}

/* Iti (intl-tel-input) */
.iti .iti__selected-dial-code {
    margin-bottom: 2px;
}
.iti__search-input {
    height: 40px;
    font-size: 16px;
}

/* Modal */
.modal {
    position: absolute;
    top: 0;
    background-color: #00000069;
    width: 100%;
    height: 100%;
    z-index: 10;
    align-items: center;
    justify-content: center;
}
.modal-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    margin: 20px;
    background-color: #b6e0ee;
    border-radius: 2px;
}
.modal-content h3 {
    font-size: 1.8em;
    margin-top: 5px;
    margin-bottom: 15px;
}
.modal-content p {
    font-size: 1.1em;
    margin: 20px;
}
.modal-content .modal-buttons {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

/* flash msg */
.flash-msg {
    position: absolute;
    top: 0px;
    z-index: 4;
    width: 100%;
    height: 80px;
}
.flash-msg .alert {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.flash-msg .alert.alert-success {
    background-color: #00a879;
}
.flash-msg .alert.alert-danger {
    background-color: #df204d;
}


@media (max-width: 768px) {
    .iti.iti--allow-dropdown.iti--show-flags {
        width: 100%;
    }
}






/* Interface admin */
.bds-litige.admin {
    height: auto;
}
table {
  border: 1px solid #ccc;
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  width: 100%;
  table-layout: fixed;
}

table caption {
  font-size: 1.5em;
  margin: .5em 0 .75em;
}

table tr {
  background-color: #f8f8f8;
  border: 1px solid #ddd;
  padding: .35em;
}

table th,
table td {
  padding: .625em;
  text-align: center;
}

table th {
  font-size: .85em;
  letter-spacing: .1em;
  text-transform: uppercase;
}

table td .actions-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pagination {
    margin: 20px 0 80px 0;
}

@media screen and (max-width: 600px) {
  table {
    border: 0;
  }

  table caption {
    font-size: 1.3em;
  }
  
  table thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  
  table tr {
    border-bottom: 3px solid #ddd;
    display: block;
    margin-bottom: .625em;
  }
  
  table td {
    border-bottom: 1px solid #ddd;
    display: block;
    font-size: .8em;
    text-align: right;
  }
  
  table td::before {
    content: attr(data-label);
    float: left;
    font-weight: bold;
    text-transform: uppercase;
  }
  
  table td:last-child {
    border-bottom: 0;
  }
}