/* app/static/css/base.css */

/* ============================= */
/* Global Styles       */
/* ============================= */
body {
    font-family: 'Geologica', sans-serif;
    background-color: #fff;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-size: 12px;
    position: relative;
    padding-bottom: 20px;
}
main {
    display: flex;
    flex: 1;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 40px; 
    margin-bottom: 40px; 
}
#ros {
    margin: auto; 
    padding: auto; 
    max-width: 10%; 
    max-height: 10%;
}

/* ============================= */
/* Header Styles       */
/* ============================= */
header {
    background-color: #000;
    color: #fff;
    padding: 5PX;
    text-align: center;
}
header h1 {
    margin: 0;
    font-size: 1.5em;
}

/* ============================= */
/* Topbar & Navigation      */
/* ============================= */
.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #000;
    position: fixed; 
    top: 0;         
    left: 0;        
    right: 0;       
    width: 100%;    
    z-index: 1001;  
}
.topbar-header {
    flex: 0 0 30%;
}
.topbar-nav {
    flex: 0 0 60%;
}
#menu-toggle {
    display: none; 
    background: #000;
    border: none;
    color: #fff;
    font-size: 1.5em;
    cursor: pointer;
    position: absolute;
    left: 0;
    z-index: 0;
}
nav {
    background-color: #000;
    padding: 5px;
    text-align: center;
    position: relative;
    z-index: 1;
}
nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex; 
    justify-content: center;
    gap: 15px; 
}
nav ul li {
    margin: 0;
}
nav ul li a,
nav ul li span {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}
nav ul li a {
    font-size: 1.5em;
}
nav ul li span {
    font-size: 1.2em;
}
nav ul li:hover,
nav ul li a:hover {
    color: #ffed00; 
}

/* ============================= */
/* Main Content Area      */
/* ============================= */
.App-menu {
    background-color: #ffffff;
    padding: 10px;
    width: 30%;
    box-sizing: border-box;
    font-size: 12px;
}
.App-menu h2 {
    align-self: center;
}
.App-content {
    padding: 10px;
    display: flex;
    flex-direction: column;
    width: 70%;
    box-sizing: border-box;
    font-size: 12px;
}

/* ============================= */
/* Footer Styles       */
/* ============================= */
footer {
    margin: 0;
    padding: 0;
    background-color: #000;
    color: #fff;
    text-align: center;
    font-size: 0.9em;
    position: fixed; 
    bottom: 0; 
    left: 0;
    right: 0;
    z-index: 1000; 
}