/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #202224; /* Dark background */
    color: #e0e0e0; /* Light text color */
    line-height: 1.6;
    min-height: 100vh; /* Ensure body takes full height */
    display: flex;
    flex-direction: column;
}

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1A1C1D; /* Dark header */
    padding: 10px 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 100;
}

/* Logo Section */
.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 30px;
    margin-right: 10px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff; /* Light text for the logo */
}

/* Language Switcher (Top-right corner) */
.language-switcher {
    display: flex;
    align-items: center;
    cursor: pointer;
    background-color: #444; /* Slightly lighter dark background */
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.language-switcher:hover {
    background-color: #666; /* Lighter hover color */
}

.language-switcher img {
    width: 20px;
    margin-left: 0.5rem;
}

.language-switcher span {
    margin-right: 0.5rem;
}

/* Content section */
.content {
    padding: 2rem;
    max-width: 100%;  /* Full width */
    margin: 0;  /* No margin for full screen */
    background-color: #2a2a2a; /* Dark background for content */
    color: #e0e0e0; /* Light text color */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    flex: 1; /* Allow content to take up available space */
}

.content a {
    color: #93c8fe; /* Set link color to a bright blue (you can change this to any color you like) */
    text-decoration: none; /* Optional: Remove underline */
    transition: color 0.3s ease; /* Smooth color transition */
}

/* Link hover effect */
.content a:hover {
    color: #ff6347; /* Change link color on hover (you can choose another color) */
    text-decoration: underline; /* Optionally, underline the link when hovered */
}

/* Footer */
footer {
    background-color: #222; /* Dark footer */
    color: #e0e0e0; /* Light footer text */
    text-align: center;
    padding: 1rem 0;
    width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .language-switcher {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }

    .language-switcher img {
        width: 18px;
    }

    .logo-text {
        font-size: 1.2rem;
    }
}
