* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

body {
    background-color: #fafafa;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main-container {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    width: 100%;
}

.sidebar {
    width: 220px;
    flex-shrink: 0;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar li {
    padding: 12px 15px;
    font-size: 15px;
    color: #666;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s;
    margin-bottom: 5px;
    border-left: 3px solid transparent;
}

.sidebar li.active {
    font-weight: bold;
    color: #000;
    background-color: #f0f0f0;
    border-left-color: #b8860b;
}

.sidebar li:hover {
    background-color: #f8f8f8;
    color: #000;
    border-left-color: #d4a574;
}

.tarjeta-mueble {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee !important;
}

.tarjeta-mueble:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.imagen-contenedor {
    height: 250px;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f9f9f9;
}

.imagen-contenedor img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px; /* Un poco de respiro para que no toque los bordes */
}

.precio {
    font-weight: bold;
    color: #b8860b;
    font-size: 1.25rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animacion-entrada {
    animation: fadeInUp 0.5s ease backwards;
}

header,
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #fff;
    border-bottom: 1px solid #eaeaea;
}

.nav-links a {
    text-decoration: none;
    color: #555;
    font-weight: bold;
    margin-left: 20px;
}

footer {
    background-color: #222;
    color: #fff;
    text-align: center;
    padding: 30px;
    margin-top: auto;
}

footer p {
    margin-bottom: 15px;
}

footer a {
    display: inline-block;
    margin: 0 10px;
}

.card-body {
    flex-grow: 1;
    padding: 20px;
}

.card-title {
    min-height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .main-container {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
    }
}

[v-cloak] {
    display: none;
}

.login-container {
    max-width: 400px;
    margin: 100px auto;
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.btn-dark {
    border-radius: 10px;
    padding: 12px;
    font-weight: 600;
}