/* footer.css */

/* Ensure the body takes the full height of the viewport */
html, body {
    height: 100%; /* Ensures that the body stretches to the full height of the page */
    margin: 0; /* Removes default margin */
    display: flex;
    flex-direction: column;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
    margin-top: auto; /* Pushes the footer to the bottom */
    width: 100%; /* Ensures the footer spans the full width */
    box-sizing: border-box; /* Includes padding and border in the element’s total width and height */
}

.footer-links {
    list-style-type: none;
    padding: 0;
    margin: 5px 0 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links li {
    margin: 0 10px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer {
    display: flex;
    justify-content: space-between; /* Ensures content within the footer spreads out */
    align-items: center;
    width: 100%;
    background-color: #323238;
    border: 1px solid #404040;
    color: #ACACC1; 
    height: 50px;
    box-sizing: border-box;
}

.footer-leftside {
    flex: 1;
    text-align: left;
    padding-left: 20px;
}

.footer-leftside div 
{
  margin-top: 15px;
}

.footer-logo {
  font-family: "Roboto Mono", mono, sans;
  font-size: 12px;
  font-weight: 400;
  color: #ACACC1;
  text-transform: uppercase;
  text-decoration: none;
  padding-bottom: 10px;
  padding-left: 20px;
}

.footer-links {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
   padding-bottom: 10px;
  padding-right: 20px;
}

.footer-links a {
  font-family: "Roboto Mono", mono, sans;
  font-size: 12px;
  font-weight: 400;
  color: #ACACC1;
  text-transform: uppercase;
  text-decoration: none;
  padding: 8px; 
}

.footer-links a:hover {
    color: #E5A028;
}

.main-content {
    flex: 1; /* Allows the content to take up the remaining space between the header and footer */
}
