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

header{
    background-color: #A2A3BB;
    padding: 10px 0;
}

header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}


header nav ul li {
    margin: 0 15px;
}

header nav ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    transition: color 0.3s ease;
}

header nav ul li a:hover {
    color: #1abc9c;
}

main {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

#title-section {
    display: flex; 
    flex-direction: row; 
    align-items: center; 
    justify-content: flex-start; 
    text-align: center; 
    margin-bottom: 30px; 
    padding-left: 100px;
}

#title-section h1 {
    font-size: 4rem;
    color: #2c3e50;
    margin: 0;
    text-align: center;
    flex-grow: 1;
}

#title-section img {
    height: 120px; 
    width: auto; 
    object-fit: contain; 
}

#home{
    text-align: center;
    font-size:1.2rem;
}

.table-container{
    overflow-x: auto;
    margin-top: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #fff;
}

#dropdown-container {
    text-align: center;
    margin-bottom: 20px;
}

#dropdown-container label {
    font-size: 18px;
    font-weight: bold;
    margin-right: 10px;
    color: #2c3e50;
}

#position-dropdown {
    width: 250px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    background-color: #fff;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

#position-dropdown:hover {
    border-color: #1abc9c;
}

#position-dropdown:focus {
    outline: none;
    border-color: #16a085;
    box-shadow: 0 0 5px rgba(26, 188, 156, 0.5);
}

#search {
    text-align: center;
    margin-bottom: 20px;
}

#search h2 {
    margin-bottom: 10px;
    font-size: 24px;
    color: #2c3e50;
}

#search-bar {
    width: 300px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    margin-right: 10px;
}

#search-btn {
    background-color: #1abc9c;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#search-btn:hover {
    background-color: #16a085;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 16px;
    table-layout: auto;
}

table thead {
    background-color: #2c3e50;
    color: white;
}

table th,
table td {
    text-align: left;
    padding: 12px 15px;
    border: 1px solid #ddd;
}

table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

table tbody tr:hover {
    background-color: #f1f1f1;
}

table td {
    vertical-align: middle;
}

@media screen and (max-width: 768px) {
    #title-section {
        flex-direction: column;
        align-items: center;
    }

    #title-section h1 {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }

    #title-section img {
        height: 60px;
    }

    #search-bar {
        width: 100%;
        margin-bottom: 10px;
    }

    #search-btn {
        width: 100%;
    }

    table th,
    table td {
        font-size: 14px;
    }
}