* {
  box-sizing: border-box;
  font-family: 'Cairo', sans-serif;
}

body {
  background: #f8fafc;
  margin: 0;
  color: #0f172a;
}

/* AUTH */
.auth {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.auth-card {
  background: white;
  padding: 40px;
  width: 100%;
  max-width: 420px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,.1);
}

.auth-card h1 {
  color: #0f2a44;
}

.subtitle {
  color: #64748b;
  margin-bottom: 30px;
}

.auth-card input {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
}

button {
  background: #0f2a44;
  color: white;
  border: none;
  padding: 12px;
  width: 100%;
  border-radius: 8px;
  cursor: pointer;
}

/* TOPBAR */
.topbar {
  background: #0f2a44;
  color: white;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
}

/* CONTAINER */
.container {
  padding: 20px;
}

/* INFO */
.info {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
  gap: 15px;
}

.info-box {
  background: white;
  padding: 20px;
  border-radius: 12px;
  border-right: 6px solid #0f2a44;
}

.green {
  border-right-color: #15803d;
}

/* CARD */
.card {
  background: white;
  margin-top: 25px;
  padding: 20px;
  border-radius: 14px;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
}

table th, table td {
  padding: 12px;
  border-bottom: 1px solid #e2e8f0;
  text-align: center;
}

.pdf-btn {
  background: #15803d;
  display: block;
  margin-top: 20px;
    color: white;
    border: none;
    padding: 12px;
    width: 100%;
    border-radius: 8px;
    cursor: pointer;
        text-align: center;
    text-decoration: none;
}

/* MOBILE */
@media(max-width:600px){
  table th, table td {
    font-size: 14px;
  }
}
