/* 
     this file will contain most of css styles that I will apply to this app
 */

table {

  border-collapse: collapse;
  width: 100%;
}

td, th {
  border: 1px solid #dddddd;
  text-align: left;
  padding: 8px;
}

tr:nth-child(even) {
  background-color: #f6f3f3;
}
#upload-button{
    color: white;
    padding: 15px 32px;
    margin-bottom: 10px;
    margin-left: 90%;
    border: none;
}


.modal {
  display: none; 
  position: fixed; 
  z-index: 1; 
  margin-left: auto;
  margin-right: auto;
  top: 0;
  width: 50%; 
  height: 50%; 
  overflow: auto; 
  background-color: rgb(0,0,0); 
  background-color: rgba(0,0,0,0.4); 
}


.modal-content {
  background-color: #fefefe;
  margin: 15% auto; 
  padding: 20px;
  border: 1px solid #888;
  width: 80%; 
}


.close {
  color: #ea0808;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

/* ========================== logo, login btn, and title ====================== */
#dhs-logo{
  padding-bottom: 25px;
  padding-top: 15px;

  height: 40%;
  width: 40%;
}

 #login-title{
  color: #4890C3;
}
#login-btn{
  background-color: #4890C3;
  color: white;
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

#dashboard-title {
    font-size: 22px;
    font-weight: 500;
    margin-top: -10px;
    margin-left: -5px;
    
}