header ul {
    display: flex;
    gap: 800px;

    font-family: monospace;
    font-size: 24px;

}

header ul li {
    display: flex;
    margin-top: 13px;
}

header {
    height: 70px;
    background: linear-gradient(90deg, #1E3A8A 0%, #3B82F6 50%, #6366F1 100%);
    color: #ffffff;
}

* {
    padding: 0;
    margin: 0;
}

.logo {

    margin-left: 25px;
    margin-top: 14px;
    color: #FDE047;
    /* amber-yellow accent */
    font-weight: bold;
    font-size: 24px;
    letter-spacing: 1px;
}

nav ul li {
    display: flex;
    margin-top: 5px;
    position: sticky;
}

nav {

    /* width: 180px;
    padding-top:25px;
  width: 250px;
   background-color: #f8fafc; 
  height: 100vh;
    padding-bottom: 50px;

    height: 100%; */
    background: linear-gradient(180deg, #0F172A 0%, #1E293B 100%);
    min-height: 100vh;
    width: 230px;
    padding: 24px 0;
}

nav ul li a{

    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8.6px 22px;
    color: #CBD5E1;
    text-decoration: none;
      font-family: "Anonymous Pro", monospace;
  font-weight: 550;

  font-style: normal;
    font-size: 17.5px;
    cursor: pointer;
    border-radius: 0 20px 20px 0;
    margin-right: 12px;
    transition: all .2s ease;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
}

nav ul li a:hover{
    background-color: #334155;
    color: #ffffff;

}

nav ul li a.current{
background:linear-gradient(90deg,#6366F1,#8B5CF6);
    color: #ffffff;
    font-weight: 600;
}
.all-things{
    background-color: rgb(241, 245, 249);

    
    flex: 1;
    background-color: rgb(241, 245, 249);
    padding: 28px 32px;
    /* remove margin-left: 250px — flex handles the spacing now */

}
.app-shell {
    display: flex;
}