body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
}

header {
    background: #343439;
    color: white;
    display: flex;
    flex-direction: column; /* Stack elements vertically */
    align-items: center; /* Center elements horizontally */
    padding: 10px 20px;
    position: relative; /* Allows absolute positioning inside */
}
h1 {
    display: inline-block;
    border-bottom: 4px solid red; 
    padding-bottom: 5px;
    text-align: center;

}

nav ul {
    list-style: none;
    background: #555;
    padding: 10px;
    text-align: center;}

    a:hover {
        color: rgba(255, 0, 0, 0.79);

}

nav ul li {
    display: inline;
    margin: 10px;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

main {
    padding: 20px;
    font-family: Arial, sans-serif;
}

form {
    display: flex;
    flex-direction: column;
    max-width: 400px;
    margin: auto;
}

input, textarea, button {
    margin: 10px 0;
    padding: 10px;
}

button {
    background: #333;
    color: white;
    border: none;
    cursor: pointer;
}

button:hover {
    background: #555;
}

footer {
    text-align: center;
    background: #333;
    color: white;
    padding: 10px;
    position: absolute;
    width: 100%;
}
.profile-container {
    display: flex; 
    align-items: center; 
    gap: 20px; 
    padding: 20px;
}

.profile-container img {
    width: 150px;
    height: 150px;
    border-radius: 50%; 
}

.welcome-text {
    max-width: 500px; 
    font-family: Arial, sans-serif; 
    font-size: 20px; 
    font-weight: bold; 
    font-style: italic;
    color: #000000;
}
table {
    border-spacing: 15px;
}
.welcome-text2 {
    max-width: 500px;
    font-family: Arial, sans-serif;
    font-size: 20px; 
    font-weight: bold; 
    font-style: italic; 
    color: rgb(212, 14, 14); 
}
button:hover {
    background-color: red;
    transition: background-color 0.3s ease; }

    .container {
        display: flex;
        justify-content: center;
        align-items: center; 
        flex-direction: column;
    } 
    h3{
        padding-bottom: 5px;
        background: #343439;
        color: rgb(255, 255, 255);
        text-align: center;
        padding: 10px;
        font-family: Arial, sans-serif;
        font-size: 30px;
        display: inline-block;
        border-bottom: 4px solid rgb(61, 141, 215); }
   
    .Page-Lists {
        max-width: 500px;
        font-family: Arial, sans-serif;
        font-size: 20px; 
        font-weight: bold; 
        font-style: italic; 
        color: rgb(54, 106, 184); 
        display: flex;
        justify-content: center;
        align-items: center; 
        margin: auto;
        margin-top: 100px;}

        .lang-container {
            display: inside;
            justify-content: normal;  /* Centers horizontally */
            align-items: center;  /* Centers vertically (if needed) */
            gap: 10px;  /* Space between buttons */
            margin-top: 20px;  /* Adjust spacing from other elements */
            display: flex;
            gap: 10px;
            position: absolute;
            bottom: 5px; /* Move to the bottom */
            right: 20px; /* Align to the right */ 
        }
        .lang-btn {
            padding: 10px 15px;
            font-size: 16px;
            cursor: pointer;
            border: none;
            background-color: #3f444a0c;
            color: white;
            border-radius: 5px;
            transition: 0.3s;
           
        }
        .lang-btn:hover {
            background-color: #d62929;
        }
        
