body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}
header {
    background-color: #0073e6; /* Assuming you want a blue header */
    text-align: center;
    padding: 20px 0;
    color: #fff;
}
.header .profile-photo {
    width: 150px;
    border-radius: 50%;
    margin-top: 10px;
}
.logo {
    width: 150px;
    height: auto;
}
.table-container {
    display: flex;
    justify-content: center;
}
table {
    width: 90%;
    max-width: 600px; /* Adjust for better responsiveness */
}
td {
    text-align: center;
    word-wrap: break-word;
}
.nav-bar {
    display: flex;
    justify-content: space-evenly; /* Space out links evenly */
    flex-wrap: wrap; /* Allow links to wrap if needed */
    background: #333;
    padding: 10px 0;
    margin: 0; /* Ensure no unwanted margins */
    box-sizing: border-box; /* Include padding in element width */
}
.nav-bar a {
    color: #fff;
    text-decoration: none;
    margin: 5px 10px; /* Add spacing between links */
    padding: 10px;
    transition: background 0.3s;
    display: block; /* Ensures proper clickable area */
    text-align: center;
}
.nav-bar a:hover {
    background: #0073e6;
    border-radius: 5px;
}

@media (max-width: 600px) {
    .nav-bar {
        flex-direction: column; /* Stack links vertically on small screens */
        align-items: center; /* Center links horizontally */
    }

    .nav-bar a {
        width: 100%; /* Make links take full width for easy clicking */
        margin: 5px 0; /* Add vertical spacing */
    }
}
.profile {
    margin-top: 50px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
}
.profile img {
    float: left;
    margin-right: 20px;
    border-radius: 50%;
    width: 100px;
    height: 100px;
}
.profile h2 {
    margin: 0;
}
.gallery {
    margin-top: 50px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
}
.gallery img {
    float: left;
    margin-right: 20px;
    border-radius: 0;
    width: 200px;
    height: 200px;
    object-fit: cover;
}
.gallery h2 {
    margin: 0;
}
.section {
    padding: 20px;
    max-width: 800px;
    margin: 20px auto;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.section h2 {
    margin-bottom: 10px;
    color: #0073e6;
}

ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    margin: 10px 0;
}

ul li a {
    color: #0073e6;
    text-decoration: none;
}

ul li a:hover {
    text-decoration: underline;
}

.social-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.social-links li {
    margin: 5px 0;
}

.footer {
    text-align: center;
    background: #333;
    color: #fff;
    padding: 10px 0;
    margin-top: 20px;
}
