body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100vh;
    background: #0c1226 url('/assets/img/fundoazulescuro2.png') no-repeat center center;
    background-size: cover;
}

/* Navbar */
.navbar {
    width: 100%;
    padding: 20px;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Botões */
.navbar .btn {
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}

.navbar .btn:hover {
    transform: scale(1.1);
}

/* Bloco de Notas */
.note-container {
    width: 100%;
    max-width: 800px;
    background: #ffffffd9;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 9px;
    overflow: hidden;
}

textarea#noteContent {
    width: 100%;
    height: 300px;
    padding: 15px;
    font-size: 16px;
    border: none;
    resize: none;
    border-bottom: 2px solid #ddd;
    flex-grow: 1;
    height: 380px;
    resize: none;
    background-image: url('../img/Palmas2025transparente.png');
    background-size: 45% auto;
    background-repeat: no-repeat;
    background-position: center;
    padding: 1rem;
    border-radius: 5px;
    border: 1px solid #ced4da;





}

textarea#noteContent:focus {
    outline: none;
    border-bottom: 2px solid #007bff;
}







.note-footer {
    background: #d1d4d6;
    padding: 10px;
    border-top: 1px solid #88b9fa;
    text-align: center;
}

/* FOOTER */
footer {
    margin-top: auto;
    background-color: #030c49;
    color: #02ff0d;
    padding: 0.5rem;
    font-size: 0.8rem;
    text-align: center;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
}

/* Responsividade */
@media (max-width: 600px) {
    .navbar .btn {
        font-size: 12px;
        padding: 8px 15px;
    }

    footer {
        font-size: 0.7rem;
        padding: 0.3rem;
    }
}
