/* 
   Este arquivo CSS agora é usado principalmente para o painel administrativo 
   ou estilos específicos de plugins que não usamos no Frontend Tailwind. 
   O Frontend principal (index.php, produto.php) usa classes Tailwind.
*/

:root {
    --primary-color: #A67C52;
    --background-color: #FDF5F2;
    --text-color: #333333;
    --white: #ffffff;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    margin: 0;
    padding: 0;
}

/* Admin Specific Styles preserved */
.admin-header {
    background: #333;
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-container {
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.btn-add {
    background: var(--primary-color);
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

th,
td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

th {
    background: #f9f9f9;
    font-weight: bold;
}

.actions a {
    margin-right: 10px;
    text-decoration: none;
}

.btn-edit {
    color: blue;
}

.btn-delete {
    color: red;
}

/* Login */
.login-box {
    background: white;
    padding: 40px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    width: 300px;
    margin: 100px auto;
}

.login-box h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.btn-save,
.btn-login {
    width: 100%;
    padding: 15px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
}

.error {
    color: red;
    font-size: 0.9rem;
    text-align: center;
    margin-bottom: 15px;
}