/* Add your custom styles here */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
}

header {
    background-color: #333;
    color: #fff;
    padding: 20px;
}

.header-content {
    display: flex;
    align-items: center; /* Aligns the logo and text vertically */
}

.logo {
    margin-right: 20px; /* Space between the logo and text */
    width: 50px; /* Set the size of the logo */
    height: 50px;
}

h1 {
    margin: 0;
}

.container {
    display: flex;
    flex: 1;
}

.sidebar {
    width: 250px;
    background-color: #f5f5f5;
    padding: 20px;
    box-shadow: 2px 0 5px rgba(0,0,0,0.1);
}

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

.sidebar ul li {
    margin-bottom: 10px;
}

.sidebar ul li a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
    padding: 10px;
    display: block;
    border-radius: 5px;
}

.sidebar ul li a:hover {
    background-color: #ddd;
}

.contact-info {
  margin-top: auto; /* Ensures contact info stays at the bottom */
  padding: 20px;    /* Adds padding for better spacing */
}

main {
    flex: 1;
    padding: 20px;
}

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