@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed&display=swap');



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto Condensed', sans-serif;
}

body {
  background-color: #f7f7f7;
}


.header-container {
  background-color: #51438f;
  color: white;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  margin-bottom: 1rem;
}

.logo-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.25rem
}

.frequencia-text {
  font-size: 2rem;
}

.user-container {
  display:flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}

.logo-image {
  width: 3rem;
  height: 3rem;
  border-radius: 2rem;
}

.input-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.input-title {
  font-size: 1.5rem;
  color: #0d234a;
}

.input {
  padding: 0.5rem;
  width: 20rem;
  font-size: 1rem;
  outline: none;
  border: 0.5px solid #504190;
  border-radius: 0.25rem;
  text-align: center;
  cursor: pointer;
  color: #73908d;
  background-color: white;
}

.input-btn {
  display:flex;
  align-items: center;
  gap: 0.25rem;
}

.add-students, .refresh {
  width: 6rem;
  height: 2.5rem;
  background-color: #51438f;
  color: #fff;
  border: 1px solid white;
  border-radius: 0.2rem;
  outline: none;
  cursor: pointer;
  font-weight: bold;
}

.table-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

table {
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  border-collapse: collapse;
  overflow: hidden;
  background-color: #fff;
  border-radius: 5px;
  cursor: pointer;
  color: #6e7b91;
}

th {
  padding: 8px;
  border: none;
  background-color:white;
  color: #4d5d79;
  font-size: 1rem;
  font-weight: bold;
  width: 8rem;
}

th:first-child {
  border-top-left-radius: 10px; 
  border-bottom-left-radius: 10px; 
}

th:last-child {
  border-top-right-radius: 10px; 
  border-bottom-right-radius: 10px; 
}

td {
  padding: 8px;
  border-bottom: 1px solid #f3f3f4;
  border-left: none;
  border-right: none;
  border-top: none;
}

.status-inapto,
  .status-em-analise,
  .status-apto {
    width: 70%;
    margin: 0 auto;
    display: block;
    padding: 8px;
    text-align: center;
    border-radius: 10px;
  }

  .status-inapto {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 1.25rem;

    color: #e16054; 
    background: #f5d0cd;   
  }

  .status-em-analise {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 1.25rem;

    background: #f5b93f;
    color: yellow; 
  }

  .status-apto {

    display: flex;
    align-items: center;
    justify-content: center;
    height: 1.25rem;
    background: #d2ebd3;
    color: #6ec073;    
  }


  th:nth-child(5),
  td:nth-child(5) {
    width: 150px; 
  }
