body {
    font-family: 'Comic Sans MS', cursive, sans-serif;
    background-color: #e0f7fa;
    color: #004d40;
}

h1, h2, h3 {
    color: #00796b;
}

a {
    color: #004d40;
    text-decoration: none;
}

a:hover {
    color: #00796b;
    text-decoration: underline;
}

.button {
    background-color: #004d40;
    border: none;
    color: white;
    padding: 10px 24px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    transition-duration: 0.4s;
    cursor: pointer;
}

.button:hover {
    background-color: #00796b;
    color: white;
}

.froge-icon {
    display: inline-block;
    width: 32px;
    height: 32px;
    background-image: url('/assets/icons/froge.svg');
    background-size: cover;
    vertical-align: middle;
}

.footer {
    background-color: #00695c;
    color: white;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
}

.forum-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.post-card {
    background: #b2dfdb;
    border: 1px solid #004d40;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 8px;
}

textarea:focus, input:focus {
    border-color: #00796b;
}