

.toggle-btn {
   
    width: 240px;
    height: 41px;
    margin-left: 6.5%;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, rgb(255, 0, 0), rgb(5, 5, 5));
    font-weight: 500;
    margin-top: 10px;
    border: 1px solid rgba(148, 148, 148, 0.712);
    transition: var(--transition);
    box-shadow: inset 4px 4px 4px white, inset -6px -6px 6px white, 4px 8px 12px rgba(153, 153, 153, 0.664);
}

.toggle-btn:hover {
    background: linear-gradient(160deg, rgb(0, 204, 255), rgb(5, 5, 5));
}
.site-container {
    display: none;
    background: #121212;
    border-radius: 12px;
    padding: 25px;
    max-height: 600px;
    overflow-y: auto;
    border: 1px solid #333;
}

.site-container.show {
    width: 88%;
    margin: auto;
    margin-left: 6.3%;
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.sites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}

.site-item {
    background: #1e1e1e;
    padding:0 12px;
    border-radius: 8px;
    transition: all 0.2s;
    border-left: 3px solid #6e00ff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-item:hover {
    background: #383838;
    transform: translateY(-3px);
    border-left-color: #00bfff;
}

.site-icon {
    /* width: 20px; */
    /* height: 20px; */
    /* object-fit: contain; */
}

.site-item a {
    /* color: #e0e0e0; */
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.site-item a:hover {
    color: #00bfff;
}

/* Scrollbar Styling */
.site-container::-webkit-scrollbar {
    width: 8px;
}

.site-container::-webkit-scrollbar-track {
    background: #1e1e1e;
    border-radius: 10px;
}

.site-container::-webkit-scrollbar-thumb {
    background: #6e00ff;
    border-radius: 10px;
}

.site-container::-webkit-scrollbar-thumb:hover {
    background: #8a2be2;
}

@media (max-width: 768px) {
    .sites-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
}

