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

body {
    background: #f6f6f6;
    color: #262626;
    font-family: 'Roboto Condensed', sans-serif;
    /* font-family: 'Open Sans', sans-serif; */
    font-size: 14px;
    letter-spacing: 0px;
    text-align: left;
}

.board {
    max-width: 400px;
    margin: 0 auto;
    overflow: hidden;
  }

.brand {
  background: none;
  color: #262626;
}

.profile-name {
      text-align: center;
      padding: 30px;
  }

.links {
      font-family: 'Roboto Condensed', sans-serif;
      align-items: center;
      text-align: center;
      margin-top: 20px;
      padding: 20px;
      border: 2px solid #262626;
      background-color: #f6f6f6;
      color: #262626;
      width: 80%;
      display: block;
      margin-left: auto;
      margin-right: auto;
      border-radius: 5px;
  }

  .linksnarrow {
  
    align-items: center;
    text-align: center;
    margin-top: 10px;
    padding: 10px;
    border: 2px solid #262626;
    background-color: #f6f6f6;
    color: #262626;
    width: 50%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 5px;
}

  .links:hover, .linksnarrow:hover {
  
    background-color: #262626;
    color: #f6f6f6;
    cursor: pointer;
}

.linksnarrow-red {  
  align-items: center;
  text-align: center;
  margin-top: 10px;
  padding: 5px;
  border: none;
  background-color: #dc3545;
  color: #f6f6f6;
  width: 60%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 5px;
  cursor: pointer;
}

.input {
  font-family: 'Roboto Condensed', sans-serif;
  align-items: center;
  text-align: center;
  margin-top: 20px;
  padding: 20px;
  border: 1px solid #262626;
  background-color: #f6f6f6;
  color: #262626;
  border-width: 2px;
  width: 80%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 5px;
}

.inputnarrow {  
    align-items: center;
    text-align: center;
    margin-top: 10px;
    padding: 10px;
    border: 1px solid #262626;
    background-color: #f6f6f6;
    color: #262626;
    width: 50%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 5px;
}

.underline-input {
  font-family: 'Roboto Condensed', sans-serif;
  border: none;
  border-bottom: 1px solid #000; /* Adds only a bottom border */
  background-color: #f6f6f6;
  outline: none; /* Removes the outline when the input is focused */
  padding: 5px;
  width: 100px; /* Adjust width as needed */
}

.button {
  border: 0px;
  font-family: 'Roboto Condensed', sans-serif;
  background-color: #f6f6f6;
  color: #262626;
}

.button:hover {
  cursor: pointer;
  background-color: #262626;
  color: #f6f6f6;
}

.notes {
    text-align: left;
    margin-top: 10px;
    padding: 10px;
    border-width: 2px;
    width: 270px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

a {
  color: #007bff;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #0056b3;
}

.a {
  border: 0px;
  font-family: 'Roboto Condensed', sans-serif;
  color: #007bff;
  text-decoration: none;
  transition: color 0.3s ease;
  background: #f6f6f6;
  padding: 3px 3px 3px 3px;
}

.a:hover {
  color: #0056b3;
  background: #f6f6f6; 
  cursor: pointer;
}

.bottom-text {
  color: #f6f6f6;
  text-align: center;
  margin-top: 40px;
  font-size: 20px;
  font-weight: bold;
}

.description-text {
  color: #f6f6f6;
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  font-weight: normal;
}

.notification {
  text-align: left;
  margin-top: 5px;
  padding: 5px auto;
  border-width: 2px;
  width: 100%;
  display: block;
  border-top: 1px solid #262626;
  border-bottom: 1px solid #262626;
}

.success-message {
  color: #28a745;
  font-weight: bold;
  padding: 5px;
  margin-bottom: 5px;
  text-align: left;
}

.error-message {
  color: #dc3545;
  font-weight: bold;
  padding: 5px;
  margin-bottom: 5px;
  text-align: center;
}

.info-message {
  color: #007bff;
  font-weight: bold;
  padding: 5px;
  margin-bottom: 5px;
  text-align: left;
}

table {
  border-collapse: separate;
  border-spacing: 0 0px; /* Adds 6px space between rows */
}

td, th {
  padding: 4px; /* Add padding inside the cells as needed */
}
  
@media only screen and (max-width:620px) {
    /* For mobile phones: */
    
    body {
      font-size: 16px;
    }

    .links {
      width:80%;
    }

    table {
      font-size: 14px;
    }
}
