/* settings.css */

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    overflow: hidden;
    display: flex;
    height: 100vh;
    background-color: #f0f0f0;
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none; /* For IE and older Edge */
}

body::-webkit-scrollbar {
    display: none; /* For WebKit-based browsers (Chrome, Safari, newer Edge) */
}

.container {
    display: flex;
    width: 100%;
    height: 100vh;
    overflow-y: hidden;
}

/* Sidebar */
.sidebar {
    width: 250px;
    background-color: #1a1a1a;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
}

.sidebar h1.logo {
    text-align: center;
    font-size: 34px;
    color: #e044ff;
    margin-bottom: 20px;
}

.sidebar nav {
    width: 100%;
}

.sidebar nav a {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

.sidebar nav a span {
    margin-right: 10px;
}

.sidebar nav a:hover,
.sidebar nav a.active {
    background-color: #333;
}

/* Main Content */
.main-content {
    margin-left: 250px; /* Matches the sidebar width */
    flex: 1;
    padding: 20px;
    height: 100vh;
    overflow-y: auto;
    scroll-behavior: smooth;
    background: linear-gradient(to bottom, #FF00B2, #3FFFDF);
}

.main-content::-webkit-scrollbar {
    width: 0;
}

.main-content {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Additional Settings Content */
.color-picker, .language-picker, .fullscreen-toggle {
    text-align: center;
    background: #c9c9c9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
}

.color-picker h2, .language-picker h2, .fullscreen-toggle h2 {
    color: #FF00B2;
    margin-bottom: 20px;
}

.color-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 15px;
    justify-items: center;
}

.color-square {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.color-square:hover {
    transform: scale(1.1);
}

.language-images {
    display: grid;
    grid-template-columns: repeat(auto-fill, 100px);
    gap: 10px;
    justify-content: center;
}

.language-option img {
    width: 100px;
    height: 75px;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.language-option img:hover {
    transform: scale(1.1);
}

.menu-item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    color: white;
    text-decoration: none;
    font-size: 18px;
}
