/* custom-styles.css */

/* General styles for the header and footer */
body {
    margin: 0;
    font-family: Arial, sans-serif;
}

header {
    background-color: #f8f9fa;
    padding: 10px 0;
    border-bottom: 1px solid #e7e7e7;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10%;
}

.navbar a {
    text-decoration: none;
    color: #333;
    padding: 8px 12px;
    transition: color 0.3s;
}

.navbar a:hover {
    color: #007bff;
}

.footer {
    background-color: #f8f9fa;
    border-top: 1px solid #e7e7e7;
    padding: 20px 0;
    text-align: center;
}

.footer a {
    color: #333;
    text-decoration: none;
    margin: 0 5px;
}

.footer a:hover {
    color: #007bff;
}
