
body {
  color: black;
  .jacquard-12-regular {
  font-family: "Jacquard 12", system-ui;
  font-weight: 400;
  font-style: normal;
}

  font-weight: 400;
  font-style: normal;
}
  
  .main-content {
    margin: 1;  
    padding: 0%;
    font-family: 'Courier New', Courier, monospace;
    color: darkkhaki;
  }
  
  /* Reset default page styling */
* {
    margin: 0;
    padding: 0;
    font-family: "Jacquard 12", system-ui;
    color: orchid;
}

/* Arrange sidebar and main content side-by-side */
body {
    display: flex;
    background-color: #a5b830;
}

/* Sidebar Layout */
.sidebar {
    width: 260px;
    height: 100vh; /* Full viewport height */
    background-color: lavenderblush;
    color: mediumorchid;
    position: fixed; /* Keeps sidebar fixed during page scroll */
    top: 0;
    left: 0;
    padding: 20px 0;
}

/* Brand/Logo Heading */
.sidebar-brand {
    padding: 10px 25px;
    margin-bottom: 30px;
}

.sidebar-brand h2 {
    font-size: 24px;
    letter-spacing: 1px;
}

/* Navigation List */
.sidebar-menu {
    list-style: none;
}

.sidebar-menu li {
    width: 100%;
}

/* Menu Links */
.sidebar-menu a {
    display: block;
    color: darkorchid;
    text-shadow: 4px 4px 4px #aaa;
    padding: 15px 25px;
    font-size: 16px;
    transition: all 0.3s ease; /* Smooth transition for hover effects */
}

/* Hover & Active States */
.sidebar-menu a:hover, 
.sidebar-menu a.active {
    color: #fff;
    background-color: rebeccapurple;
    border-left: 4px solid darkorchid; /* Decorative indicator line */
    padding-left: 21px; /* Shifts text slightly on hover due to border */
}

/* Main Content Layout offset by Sidebar Width */
.main-content {
    margin-left: 260px; /* Same as sidebar width to prevent overlapping */
    padding: 40px;
    flex-grow: 1;
}
