/* Sidebar container */
.sidebar {
  width: 250px;
  height: 100%;
  background: #F8FAFC;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.sidebar-logo, .sidebar-nav, .sidebar-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sidebar-logo{
  padding-bottom: 30px;
  padding-top: 30px;
}

.sidebar-logo h1{
  color: #1E3A8A;
  font-family: sans-serif;
  font-size: 24px;
}

.sidebar-logo p{
  color:#64748B;
  font-family: sans-serif;
}

.sidebar-nav{
  color: #64749A;
}

.sidebar-nav a, .sidebar-nav form{
  padding: 10px;
  margin-top: 10px;
  width: 80%;
  display: flex;
  align-items: center;
}

.sidebar-nav a span, .sidebar-nav form span{
  padding-right: 10px;
}

.sidebar-nav a:hover,  .sidebar-nav form:hover{
  background-color: #F1F5F9;
  color: #1D4ED8;
}

.sidebar-footer{
  padding-bottom: 20px;
}

.sidebar-footer a{
  background: #0052b4;
  color: #ffffff;
  border: none;
  border-radius: 999px;
  padding: 15px 25px;
  font-size: 15px;
  font-family: Arial, sans-serif;
  cursor: pointer;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
  transition: all 0.2s ease;
}

.sidebar-footer a:hover{
  background: #00479c;
  transform: translateY(-1px);
}