/* chaosnav/static/chaosnav/styles.css */

body {
    font-family: 'Source Sans Pro', sans-serif;
/*    background-color: #f4f4f4; TODO issue here with bg colour */
    background-color: #ffffff;
    text-align: center;
    margin: 0;
    padding: 0;
}

header {
    background-color: #6785B7;
    color: #ffffff;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
/*    text-align: center;*/
}

/* Container for inner text bits */
.crop {
    width: 80%; /* width of container */
    height: 400px; /* height of container */
    object-fit: cover;
}


.table_centre {
  margin-left: auto;
  margin-right: auto;
}

/* Styling for the logo/icon and title on the left */
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 3.5vw; /* Adjust the size of your icon e.g. 60px or 10vw (10% of the viewport width) */
    height: auto;
    margin-right: 2vw; /* Add some spacing between the icon and title */
}


/* Styling for the menu buttons on the right */
nav {
    display: flex;
    margin-top: 10px;
}

nav ul {
    list-style-type: none;
    display: flex;
    padding: 0;
    margin: 0;
}

nav ul li {
    display: inline-block;
    margin-right: 10px;
}

/* Style the links in the navigation */
nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    background-color: #007bff; /* Change to your desired button color */
    padding: 10px 15px; /* Add padding to the buttons */
    border-radius: 5px; /* Add rounded corners to the buttons */
}

/* Add some hover effect on the links */
nav a:hover {
    background-color: #0056b3; /* Change to your desired hover color */
}

main {
    margin: 20px;
}

footer {
    background-color: #333;
    color: #fff;
    padding: 10px;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
}
