body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.input-container {
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    height: 40px;
}


.nav-link {
    color: #362cb9;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 14px;
    background: white;
    border: 1px solid #362cb9;
    transition: all 0.2s;
}
.nav-link:hover {
    background: #362cb9;
    color: white;
}
.divider {
    height: 30px;
    width: 1px;
    background: #dee2e6;
}



.loader {
animation: rotate 1s infinite;
height: 50px;
width: 50px;
visibility: hidden;
}
.loader:before,
.loader:after {
content: "";
display: block;
height: 20px;
width: 20px;
}
.loader:before {
animation: box1 1s infinite;
background-color: #362cb9ff;
box-shadow: 30px 0 0 #ff3d00;
margin-bottom: 10px;
}
.loader:after {
animation: box2 1s infinite;
background-color: #ff3d00;
box-shadow: 30px 0 0 #362cb9ff;
}

@keyframes rotate {
0% { transform: rotate(0deg) scale(0.8) }
50% { transform: rotate(360deg) scale(1.2) }
100% { transform: rotate(720deg) scale(0.8) }
}

@keyframes box1 {
0% {
    box-shadow: 30px 0 0 #ff3d00;
}
50% {
    box-shadow: 0 0 0 #ff3d00;
    margin-bottom: 0;
    transform: translate(15px, 15px);
}
100% {
    box-shadow: 30px 0 0 #ff3d00;
    margin-bottom: 10px;
}
}

@keyframes box2 {
0% {
    box-shadow: 30px 0 0 #362cb9ff;
}
50% {
    box-shadow: 0 0 0 #362cb9ff;
    margin-top: -20px;
    transform: translate(15px, 15px);
}
100% {
    box-shadow: 30px 0 0 #362cb9ff;
    margin-top: 0;
}
}
