*{
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}
body{
    font-family: Helvetica;
    -webkit-font-smoothing: antialiased;
    background: #4793e3;
}

.navbar {
  background: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand h1 {
    color: #667eea;
    font-size: 24px;
}

.navbar-user {
    display: flex;
    align-items: center;
    gap: 20px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-details {
    display: flex;
    flex-direction: column;
}

.user-name {
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.user-role {
    font-size: 12px;
    color: #666;
    text-transform: capitalize;
}

.logout-btn {
    padding: 8px 20px;
    background: #f44336;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.3s;
}

.logout-btn:hover {
    background: #d32f2f;
}

h2{
    text-align: center;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
    padding: 5px 0;
}

.table1 {
    align-content: center;
    border-radius: 5px;
    font-size: 12px;
    font-weight: normal;
    border: none;
    border-collapse: collapse;
    width: 50%;
    margin-left: 25%;
    max-width: 100%;
    white-space: nowrap;
    background-color: white;
}

.l-align {
    text-align: left;
    padding: 8px;
}

.r-align {
    text-align: right;
    padding: 8px;
}

.c-align {
    text-align: center;
    padding: 8px;
}

.table1 td {
    border-right: 1px solid #f8f8f8;
    font-size: 12px;
}

.table1 thead th {
    color: #ffffff;
    background: #4FC3A1;
}


.table1 thead th:nth-child(odd) {
    color: #ffffff;
    background: #324960;
}

.table1 tr:nth-child(even) {
    background: #F8F8F8;
}

.footer {
    display: flex;
    justify-content: space-around;
    width: 50%;
    margin-top: 2rem;
    margin-left: 25%;
    padding: 2rem;
    background: #c3c4c5;
    font-size: 1rem;
    border-radius: 0.4rem;
}

.stats {
    display: flex;
    flex-direction: column;
}

.dload {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.dload button {
    text-align: center;
    background-color: #8021e0;
    border: none;
    border-radius: 0.32rem;
    color: #ffffff;
    padding: 0.5rem;    
}

.dload button:hover {
    background-color: #690fc3;
}

.dload a {
    text-decoration: none;
    color: var(--color-primary-10);
  }
  
  .dload a:hover,
  .dload a.active {
    color: var(--color-secondary-200);
  }

.danger {
    color: red;
}

.bold {
    font-weight: bold;
}

.content {
    text-align: center;
}