
        * { box-sizing: border-box; max-width: 100%; }
        html, body { overflow-x: hidden; width: 100%; margin: 0; padding: 0; }
        [v-cloak] {display: none !important;}
/*NOVAS MUDANÇAS*/
        /* ===== FORMULÁRIO ===== */
.form-container {
    background: #f8f4f0;
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid #e0d6cc;
}

/* HEADER DO FORMULÁRIO - SEMPRE VISÍVEL */
.form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px; /* <-- REDUZIDO */
    background: #f5efe9;
    cursor: pointer;
    transition: background 0.2s;
    gap: 12px;
    flex-wrap: wrap;
}

.form-header:hover {
    background: #ede5dc;
}

.form-header h3 {
    margin: 0;
    font-size: 1rem;
    color: #3d2e1e;
    display: flex;
    align-items: center;
    gap: 10px;
}

.entradas-header h3 {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
}

.contador-notas {
    font-size: 0.85rem;
    font-weight: 600;
    color: #6b5d4f;
    background: #e8e0d8;
    padding: 4px 14px;
    border-radius: 20px;
    white-space: nowrap;
}

.btn-toggle-form {
    background: transparent;
    border: none;
    color: #6b5d4f;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 20px;
    transition: 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-toggle-form:hover {
    background: #e8e0d8;
}

/* CORPO DO FORMULÁRIO */
.form-body {
    padding: 16px; /* <-- REDUZIDO */
    background: white;
    transition: all 0.3s ease;
}

.form-body.form-oculto {
    display: none;
}

.form-body.form-visible {
    display: block;
}

/* GRUPOS DO FORMULÁRIO */
.form-group {
    margin-bottom: 12px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 4px;
    color: #4a3f35;
    font-size: 0.85rem;
}

.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #d6cdc4;
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: inherit;
    resize: vertical;
    min-height: 80px;
    background: #fcfaf8;
    transition: border 0.2s;
}

.form-group textarea:focus {
    outline: none;
    border-color: #8a7a6a;
    box-shadow: 0 0 0 3px rgba(138, 122, 106, 0.1);
}

/* BOTÕES DO FORMULÁRIO */
.form-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 4px;
}

.btn-cancelar {
    padding: 8px 20px;
    border: 1px solid #d6cdc4;
    border-radius: 30px;
    background: transparent;
    color: #6b5d4f;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-cancelar:hover {
    background: #f0e8e0;
}

.btn-salvar {
    padding: 8px 24px;
    border: none;
    border-radius: 30px;
    background: #8a7a6a;
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-salvar:hover:not(:disabled) {
    background: #6f5f4f;
}

.btn-salvar:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ===== LISTA DE ENTRADAS ===== */
.entradas-lista {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
}

.entrada-item {
    background: white;
    border: 1px solid #e8e0d8;
    border-radius: 12px;
    padding: 14px 16px; /* <-- REDUZIDO */
    position: relative;
    transition: box-shadow 0.2s;
}

.entrada-item:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.entrada-data {
    font-size: 0.8rem;
    color: #6b5d4f;
    font-weight: 600;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.entrada-data i {
    color: #8a7a6a;
}

.entrada-nota {
    font-size: 0.95rem;
    color: #3d2e1e;
    line-height: 1.5;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.btn-excluir {
    position: absolute;
    top: 10px;
    right: 12px;
    background: transparent;
    border: none;
    color: #d6cdc4;
    cursor: pointer;
    font-size: 0.9rem;
    padding: 4px 8px;
    border-radius: 6px;
    transition: 0.2s;
}

.btn-excluir:hover {
    color: #e57373;
    background: #fde8e8;
}


        

/*CONFIGURAÇÕES ORIGINAIS*/
        body {
            font-family: 'Segoe UI', Roboto, system-ui, sans-serif;
            /*background: linear-gradient(145deg, #f5f0eb 0%, #e8e0d8 100%);*/
            background: black;
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 0;
            padding: 10px;
        }

        /* Container principal - estilo inspirado no design */
        .container {
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(10px);
            border-radius: 32px;
            padding: 16px 32px;
            width: 100%;
            max-width: 800px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 
                        0 8px 24px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.6);
            transition: all 0.3s ease;
        }

        /* Cabeçalho */
        #app .container{
            border: 1.5px solid;
            background: #e8e0d8;
            border-color: #b5a89a;
        }

        /* Grid de botões */
        .botoes-grid {
            display: flex;
            flex-direction: column;
            gap: 20px;
            align-items: center;
        }

        /* Estilo de cada botão grande */
        .btn-grande {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            width: 100%;
            max-width: 500px;
            padding: 28px 35px;
            background: white;
            border: none;
            border-radius: 20px;
            font-size: 26px;
            font-weight: 700;
            color: #2d2a24;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
            transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            border: 1px solid rgba(0, 0, 0, 0.04);
            letter-spacing: 0.5px;
            text-decoration: none;
            position: relative;
            overflow: hidden;
        }

        /* Efeito de fundo sutil ao passar o mouse */
        .btn-grande::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .btn-grande:hover::before {
            opacity: 1;
        }

        .btn-grande:hover {
            transform: translateY(-4px) scale(1.01);
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.10);
        }

        .btn-grande:active {
            transform: translateY(0px) scale(0.98);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
        }

        /* Ícones dentro dos botões */
        .btn-grande i {
            font-size: 38px;
            width: 50px;
            text-align: center;
            color: #6b5f53;
            transition: transform 0.3s ease;
        }

        .btn-grande:hover i {
            transform: scale(1.10) rotate(-2deg);
        }

        /* Cores específicas para cada botão (sutis) */
        .btn-diario {
            background: #fcf9f5;
            border-left: 5px solid #c9b8a5;
        }

        .btn-diario:hover {
            background: #f8f2ea;
            border-left-color: #b09a82;
        }

        .btn-animais {
            background: #f5f8f4;
            border-left: 5px solid #aec0a0;
        }

        .btn-animais:hover {
            background: #ecf2e8;
            border-left-color: #8da87a;
        }

        .btn-balance {
            background: #f5f6f8;
            border-left: 5px solid #a0b4c0;
        }

        .btn-balance:hover {
            background: #eaf0f2;
            border-left-color: #7a9aaa;
        }

        /* Texto do botão */
        .btn-grande .label {
            flex: 1;
            text-align: center;
            font-size: 24px;
            letter-spacing: 1px;
        }

        /* Responsividade */
        @media (max-width: 768px) {
            .container {
                padding: 30px 20px;
                border-radius: 24px;
            }

            .btn-grande {
                padding: 22px 20px;
                font-size: 20px;
                gap: 12px;
                max-width: 100%;
            }

            .btn-grande i {
                font-size: 30px;
                width: 40px;
            }

            .btn-grande .label {
                font-size: 20px;
            }
            
            /*novas inclusões para cabecalho*/
            .container { padding: 8px; }
            .balanco-container { padding: 12px; border-radius: 12px; }
            
        }

        @media (max-width: 480px) {
            
            #app{ width: 100%;}
            .btn-grande {
                padding: 18px 15px;
                font-size: 17px;
                gap: 10px;
                border-radius: 16px;
            }

            .btn-grande i {
                font-size: 24px;
                width: 32px;
            }

            .btn-grande .label {
                font-size: 17px;
            }

            /*cabeçalho*/
            .container { padding: 4px;}
            .balanco-container { padding: 8px; border-radius: 8px; }
        }


