.sidebar-left {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.438);
    padding: 20px;
    border-radius: 0 10px 10px 0;
    z-index: 1000;
}

.sidebar-left ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-left li {
    margin: 10px 0;
    position: relative;
}

.sidebar-left a, .sidebar-left button {
    color: white;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
}

.sidebar-left h3 {
    color: white;
    font-family: 'OctoberCrow', sans-serif;
    margin: 20px 0 10px 0;
    font-size: 16px;
}

.sidebar-left .evidence-btn {
    display: block;
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
    font-family: 'OctoberCrow', sans-serif;
}

.sidebar-left .evidence-btn:hover {
    background-color: rgba(6, 117, 6, 0.6);
    border-color: rgba(6, 117, 6, 0.8);
}

.sidebar-left .evidence-btn.active {
    background-color: rgba(6, 117, 6, 0.8);
    border-color: rgba(6, 117, 6, 1);
}

.sidebar-left #reset-btn {
    display: block;
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    background-color: rgba(255, 0, 0, 0.5);
    color: white;
    border: 1px solid rgba(255, 0, 0, 0.5);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
    font-family: 'OctoberCrow', sans-serif;
}

.sidebar-left #reset-btn:hover {
    background-color: rgba(255, 0, 0, 0.8);
    border-color: rgba(255, 0, 0, 1);
}

.sidebar-hotbar {
    margin-top: 20px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.hotbar-slot {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: all 0.2s ease;
}

.hotbar-slot:hover {
    background-color: rgba(6, 117, 6, 0.6);
    border-color: rgba(6, 117, 6, 0.8);
}

.sidebar-right {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.438);
    padding: 20px;
    border-radius: 10px 0 0 10px;
    z-index: 1000;
    max-height: 80vh;
    overflow-y: auto;
    font-family: 'OctoberCrow', sans-serif;
}

.evidence-btn {
    display: block;
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
    font-family: 'OctoberCrow', sans-serif;
}

.evidence-btn:hover {
    background-color: rgba(6, 117, 6, 0.6);
    border-color: rgba(6, 117, 6, 0.8);
}

.evidence-btn.active {
    background-color: rgba(6, 117, 6, 0.8);
    border-color: rgba(6, 117, 6, 1);
}

#reset-btn {
    display: block;
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    background-color: rgba(255, 0, 0, 0.5);
    color: white;
    border: 1px solid rgba(255, 0, 0, 0.5);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
    font-family: 'OctoberCrow', sans-serif;
}

#reset-btn:hover {
    background-color: rgba(255, 0, 0, 0.8);
    border-color: rgba(255, 0, 0, 1);
}

.top-filter {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.9), rgba(20,20,20,0.9));
    padding: 10px;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.nav-section ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-section li {
    margin: 0 10px;
}

.nav-section a {
    color: white;
    text-decoration: none;
    font-family: 'OctoberCrow', sans-serif;
    font-size: 16px;
}

.filter-section {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.filter-section h3 {
    margin: 0 10px 0 0;
    color: white;
    font-family: 'OctoberCrow', sans-serif;
    font-size: 16px;
}

.filter-section .evidence-btn, .filter-section #reset-btn {
    margin: 0 5px;
    padding: 6px 10px;
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 12px;
    font-family: 'OctoberCrow', sans-serif;
}

.filter-section .evidence-btn:hover, .filter-section #reset-btn:hover {
    background-color: rgba(6, 117, 6, 0.6);
    border-color: rgba(6, 117, 6, 0.8);
    box-shadow: 0 0 10px rgba(6, 117, 6, 0.8);
}

.filter-section .evidence-btn.active {
    background-color: rgba(6, 117, 6, 0.8);
    border-color: rgba(6, 117, 6, 1);
    box-shadow: 0 0 15px rgba(6, 117, 6, 1);
}

.filter-section #reset-btn {
    background-color: rgba(255, 0, 0, 0.5);
    border-color: rgba(255, 0, 0, 0.5);
}

.filter-section #reset-btn:hover {
    background-color: rgba(255, 0, 0, 0.8);
    border-color: rgba(255, 0, 0, 1);
}

.hotbar-section .sidebar-hotbar {
    display: flex;
    gap: 5px;
}

.hotbar-section .hotbar-slot {
    width: 30px;
    height: 30px;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 12px;
}

@media (max-width: 768px) {
    .filter-section .evidence-btn, .filter-section #reset-btn {
        padding: 4px 6px;
        font-size: 10px;
        margin: 0 2px;
    }
    .nav-section a {
        font-size: 14px;
    }
    .filter-section h3 {
        font-size: 14px;
    }
}
