:root{
    --top-offset: 112px; /* header + menu height */
  --left-offset: 290px;
  --navy: #0b1f3a;
  --navy2: #102a4f;
  --bg: #f4f6f9;
  --card: #ffffff;
  --text: #1a1a1a;
  --muted: #6b7280;
  --shadow: 0 8px 20px rgba(0,0,0,0.08);
  --radius: 14px;
}

*{ box-sizing: border-box; }

.logo{
  width: 110px;
  height: 50px;
  object-fit: contain;
  padding: 0;
}

body{
  margin: 0;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-weight: 200;
  font-size: 13px;
  border-radius: 12px;
  background: var(--bg);
  color: var(--text);
}


/* Header */
.header{
  padding: 18px 22px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.header h1{
  margin: 0;
  font-size: 28px;
}

/* Menu bar */
.nav{
  background: linear-gradient(90deg, var(--navy), var(--navy2));
  padding-left: var(--left-offset);
}
.menu{
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0 14px;
}
.menu > li{
  position: relative;
}
.menu a{
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 14px;          /* optional */
  font-weight: 400;         /* optional */
  display: block;
  padding: 14px 16px;
  color: #fff;
  text-decoration: none;
}
.menu > li:hover > a{
  background: rgba(255,255,255,0.15);
}

/* Dropdowns */
.dropdown{
  display: none;
  position: absolute;
  top: 48px;
  left: 0;
  background: #fff;
  min-width: 180px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 8px;
  z-index: 1000;
}
.menu li:hover > .dropdown{
  display: block;
}
.dropdown a{
  color: var(--text);
  padding: 10px;
  border-radius: 10px;
}
.dropdown a:hover{
  background: #eef2ff;
}

/* Submenu */
.has-sub{
  position: relative;
}
.subdropdown{
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  margin-left: 6px;
  background: #fff;
  min-width: 150px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 8px;
}
.has-sub:hover > .subdropdown{
  display: block;
}

/* Layout */
.container
{
                          /* fills space between menu and footer */
  padding: 18px 18px 18px 290px;

}

/* Panels */
.panel{
  background: var(--card);
  padding: 16px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Left user panel */
.left-panel{
  position: fixed;
  top: var(--top-offset);
  left: 18px;
  width: 260px;
  text-align: center;
}

.left-panel img{
  width: 120px;
  height: 140px;
  border-radius: 18px;
  object-fit: cover;
}
.user-name{
  font-family: Verdana, Geneva, Tahoma, sans-serif;    
  margin-top: 10px;
  font-weight: 200;
  font-size: 16px;
}

/* Right content */
.content h2{
  font-family: Verdana, Geneva, Tahoma, sans-serif;    
  margin-top: 0;
}
.content h3{
  font-family: Verdana, Geneva, Tahoma, sans-serif;    
  margin-top: 0;
}
.content h4{
  font-family: Verdana, Geneva, Tahoma, sans-serif;    
  margin-top: 0;
}
/*Textbox*/

.txtbox{
  font-family: Verdana, sans-serif;
  font-size: 13px;
  height: 30px;
  padding: 6px 10px;
}
input[type="file"]{
  font-family: Verdana, sans-serif;
  font-size: 15px;
  height: 30px;
  padding: 6px 10px;
}
input[type="text"]{
  font-family: Verdana, sans-serif;
  font-size: 13px;
  height: 30px;
  padding: 6px 10px;
}
input[type="password"]{
  font-family: Verdana, sans-serif;
  font-size: 13px;
  height: 30px;
  padding: 6px 10px;
}
.selectcombo {
  font-family: Verdana, sans-serif;
  font-size: 13px;
  height: 35px;
  padding: 6px 10px;
}
/*textarea*/
textarea {
  font-family: Verdana, sans-serif;
  font-size: 14px;
}
/*Caption*/
.caption{
  background: transparent;     /* remove button bg */
  color: navy;
  border: none;               /* remove border */
  padding: 0;                 /* remove button padding */
  font-family: Verdana, sans-serif;
  font-size: 14px;
  font-weight: bold;
  display: inline;            /* normal text flow */
}


/* Date */
input[type="date"] {
  font-family: Verdana, sans-serif;
  font-size: 13px;
  height: 35px;
  padding: 6px 10px;
  box-sizing: border-box;
}

/* Buttons */
.btn,
button,
input[type="submit"]{
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  background: linear-gradient(180deg, var(--navy), var(--navy2));
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 6px 14px rgba(11,31,58,0.25);
  transition: all 0.2s ease;
}

.btn:hover,
button:hover,
input[type="submit"]:hover{
  filter: brightness(1.1);
  transform: translateY(-1px);
}

.btn:active,
button:active,
input[type="submit"]:active{
  transform: translateY(0);
  box-shadow: 0 3px 8px rgba(11,31,58,0.3);
}

.btn:disabled,
button:disabled,
input[type="submit"]:disabled{
  opacity: 0.6;
  cursor: not-allowed;
}

/* Tables */


table{
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* Header */
thead{
  background: linear-gradient(90deg, var(--navy), var(--navy2));
}

thead th{
  color: #fff;
  text-align: left;
  padding: 8px 6px;        /* more compact */
  font-size: 13px;
  font-weight: 400;
  border-bottom: none;
  min-height: 80px;      /* header row minimum height */
  vertical-align: middle; /* keeps text centered vertically */
}

/* Body cells */
tbody td{
  padding: 7px 6px;        /* compact rows */
  font-size: 13px;
  line-height: 1.35;
  border-bottom: 1px solid #e5e7eb;
}



/* Hover highlight */
tbody tr:hover{
  background: #eef2ff;

}

/* Last row cleanup */
tbody tr:last-child td{
  border-bottom: none;
}
/* Footer */
.footer{
  background: linear-gradient(90deg, var(--navy), var(--navy2));
  color: #e5e7eb;
  margin-top: 24px;
}

.footer-inner{
  max-width: 1400px;
  margin: 0 auto;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 13px;
}

.footer a{
  color: #c7d2fe;
  text-decoration: none;
}

.footer a:hover{
  text-decoration: underline;
  color: #fff;
}

.containerRow{
                              display: flex;
                              gap: 15px;
                              align-items: flex-start;
                              font-family: Verdana, sans-serif;
                            }
                            
                            .infoBox{
                              width: 260px;
                              border: 1px solid #b7c6ff;
                              border-radius: 10px;
                              padding: 18px;
                              background: #D9E4FF; /* blue2 shade */
                            }
                            
                            /* Count rows */
                            .countRow{
                              display: flex;
                              justify-content: space-between;
                              padding: 6px 0;
                              border-bottom: 1px solid #b7c6ff;
                              font-size: 13px;
                            }
                            .countRow:last-child{ border-bottom: none; }
                            
                            .countLabel{
                              font-weight: bold;
                              color: #1C3E8A;
                            }
                            .countValue{
                              font-weight: bold;
                              color: #000;
                            }
                            
                            /* Make row link look like normal row */
                            .rowLink{
                              display: block;
                              text-decoration: none;
                              color: inherit;
                              padding: 0 6px;
                              border-radius: 6px;
                            }
                            .rowLink:hover{
                              background: #c9d8ff;
                            }
                            
                            /* Right boxes links */
                            .infoBox a.boxLink{
                              text-decoration: none;
                              color: #1C3E8A;
                              font-weight: bold;
                              font-size: 14px;
                              display: inline-block;
                            }
                            .infoBox a.boxLink:hover{
                              text-decoration: underline;
                            }
                            
  
