
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


.container {
    width: 90%;
    margin: 30px auto;
}

h1 {
    text-align: center;
    color: #003366;
    margin-bottom: 30px;
}

h2 {
    margin-top: 30px;
    color: #f04b2d;
    border-bottom: 2px solid #ddd;
    padding-bottom: 5px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

table, th, td {
    border: 1px solid #ddd;
}

th {
    background-color: #f04b2d;
    color: #fff;
    padding: 12px;
    text-align: center;
}

td {
    padding: 10px;
    text-align: center;
}

tr:nth-child(even) {
    background-color: #f9f9f9;
}

a {
    color: #003366;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

.download-all {
    text-align: center;
    margin: 40px 0;
}

.download-all a {
    background: #f04b2d;
    color: white;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
}

.download-all a:hover {
    background: #c7371f;
}


  
  /* header {
    background: #f04d23;
    color: white;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
   */
  header .logo {
    font-size: 18px;
    font-weight: bold;
  }
  
  header nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
  }
  
  header nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
  }
  
  .page-title {
    background: #ffece7;
    padding: 20px;
    text-align: center;
  }
  .page-title h1 {
    color: #f04d23;
    margin: 0;
  }
  
  .routine-section {
    margin: 30px;
  }
  
  .routine-section h2 {
    color: #f04d23;
    margin-bottom: 10px;
  }
  
  table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
  }
  
  th, td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
  }
  
  th {
    background: #f04d23;
    color: white;
  }
  
  tr:nth-child(even) {
    background: #f9f9f9;
  }
  
  
  
  /* header {
    background: #f04d23;
    color: white;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  header .logo {
    font-size: 18px;
    font-weight: bold;
  }
  
  header nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
  }
  
  header nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
  }
   */
  .page-title {
    background: #ffece7;
    padding: 20px;
    text-align: center;
  }
  .page-title h1 {
    color: #f04d23;
    margin: 0;
  }
  
  .calendar-section {
    margin: 30px;
  }
  
  table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
  }
  
  th, td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
  }
  
  th {
    background: #f04d23;
    color: white;
    text-align: center;
  }
  
  tr:nth-child(even) {
    background: #f9f9f9;
  }


  /* pabitra's code */

  /* Accounts Section */
.accounts {
  padding: 40px;
  max-width: 1000px;
  margin: auto;
}

.accounts h2 {
  text-align: center;
  margin-bottom: 10px;
}

.summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 15px;
  margin: 20px 0;
}

.card {
  background: white;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Table */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  background: white;
  border-radius: 8px;
  overflow: hidden;
}

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

table th {
  background: #ff7606;
  color: white;
}

.success { color: green; font-weight: bold; }
.warning { color: orange; font-weight: bold; }
.pending { color: red; font-weight: bold; }