/* Styles for Froge AI */

body {
    background-color: #f0f8ff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
}

header {
    background-color: #004d00;
    color: white;
    padding: 15px 0;
    text-align: center;
}

nav a {
    color: #90ee90;
    text-decoration: none;
    margin: 0 15px;
    font-size: 18px;
}

nav a:hover {
    text-decoration: underline;
}

footer {
    background-color: #222;
    color: #ccc;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
}

button {
    background-color: #008000;
    border: none;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 5px;
}

button:hover {
    background-color: #006400;
}

h1, h2, h3 {
    color: #006400;
}

a {
    color: #006400;
}

a:hover {
    color: #004d00;
}