.sidebar {
    position: absolute;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background: linear-gradient(180deg, light-dark(#56BAE1,#4e414e) 0%, light-dark(#629DF3, #070307) 100%);
    transition: right 0.2s ease;
    box-shadow: -2px 0 5px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    opacity: 0.9;
    color: #ddd;
}

.sidebar.open {
    right: 0;
}

.sidebar-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.sidebar-toggle {
    position: absolute;
    left: -38px;
    top: 10%;
    transform: translateY(-50%);
    background: linear-gradient(180deg, light-dark(#56BAE1,#4e414e) 0%, light-dark(#629DF3, #070307) 100%);
    border: 1px solid light-dark(#ddd, #070307);
    padding: 10px;
    width: 18;
    height: 16px;
    cursor: pointer;
    border-radius: 30%;
    opacity: 0.7;
}

.sidebar-toggle svg path{
  fill: light-dark(#070307,white);

}

#sidebar-title {
    padding: 20px;
    margin: 0;
    background: linear-gradient(180deg, light-dark(#629DF3 ,#070307 ) 0%, light-dark(#56BAE1, #4e414e) 100%);
    border-bottom: 1px solid light-dark(#ddd, #070307);
    text-align: center; 
    font-size: 1.3em; 
    font-weight: 600; 
    /* display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;  */
}

#results-container {
    flex-grow: 1;
    overflow-y: auto;
    padding: 20px;
}

.result-item {
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    font-size: 0.9em;
    font-weight: 400;
    /* background: linear-gradient(180deg, light-dark(#629DF3 ,#070307 ) 0%, light-dark(#56BAE1, #3a313a) 100%); */
    opacity: 1.3;
    border-bottom: 1px dotted light-dark(#ddd, #070307);

}
.result-item:hover {
    background: light-dark(#56BAE1, #070307);
}

.result-item h3 {
    font-weight: 500;
    margin-top: 0;
}

.result-item p {
    font-weight: 300;
    margin: 5px 0;
}