/* General styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* Header styling */
header {
    background-color: #333;
    color: white;
    padding: 10px;
    text-align: center;
}

header h1 {
    margin: 0;
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 10px;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* Main container styling */
.main-container {
    display: flex;
}

/* Sidebar styling */
.sidebar {
    width: 25%;
    background-color: #f4f4f4;
    padding: 20px;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
}

.search-bar form {
    margin-bottom: 20px;
}

.search-bar input[type="text"] {
    padding: 10px;
    margin: 5px 0;
    width: calc(100% - 22px); /* Adjust width to fit within container */
}

.search-bar button {
    padding: 10px;
    background-color: #007BFF;
    color: white;
    border: none;
    cursor: pointer;
}

.search-bar button:hover {
    background-color: #0056b3;
}

.filters {
    margin-top: 20px;
}

/* Content styling */
.content {
    width: 75%;
    padding: 20px;
}

/* Table styling */
table {
    width: 100%;
    border-collapse: collapse;
}

table, th, td {
    border: 1px solid #ddd;
}

th, td {
    padding: 10px;
    text-align: left;
}

thead {
    background-color: #f4f4f4;
}

.table-image {
    width: 100px;
    height: auto;
    border-radius: 8px;
}
