/* assets/css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

:root {
    --primary-color: #6F4E37;
    /* Coffee brown */
    --secondary-color: #D2691E;
    /* Chocolate */
    --accent-color: #DAA520;
    /* Goldenrod */
    --bg-color: #f8f9fa;
    --text-color: #333;
    --card-bg: #ffffff;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    /* background: linear-gradient(to bottom, #FFB6B6 0%, #B41316 100%); */
    background-attachment: fixed;
    min-height: 100vh;
}

.body1 {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background-image: url("../images/fondos/01.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

.body2 {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background-image: url("../images/fondos/10.png");
    background-repeat: no-repeat;
    background-size: cover;
}

.body3 {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background: linear-gradient(to bottom, #FFB6B6 0%, #B41316 100%);
    background-attachment: fixed;
    min-height: 100vh;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-app {
    background-color: var(--primary-color);
    border-color: var(--secondary-color);
}

.btn-app:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.card {
    background-color: rgba(21, 2, 2, 0.5);
    color: #FFFFFF;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(50px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

.card2 {
    background: rgba(255, 255, 255, 0.1);
    padding: 16px;
    color: #FFFFFF;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(50px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

.card3 {
    padding: 16px;
    color: #FFFFFF;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(50px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

.card4 {
    padding: 16px;
    color: #FFFFFF;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.4);
    background: rgba(203, 109, 81, 0.4);
    backdrop-filter: blur(50px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

.card-custom {
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
}

.auth-card {
    width: 100%;
    max-width: 400px;
    padding: 2rem;
}

.nav-bottom {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.product-card {
    transition: transform 0.2s;
}

.product-card:hover {
    transform: translateY(-5px);
}

.ticket-modal-content {
    border-radius: 15px;
    border: 2px dashed #ccc;
    background: #fffdf5;
}

.nav-pills .nav-link.active {
    /* background-color: #6F4E37; */
    background-color: #FFFFFF;
    color: #6F4E37;
}

.nav-link {
    color: white;
}

.nav-link2 {
    color: white;
}

.nav-link3 {
    color: #6F4E37;
}

.nav-link.active2 {
    background: rgba(255, 255, 255, 0.1);
    padding: 16px;
    color: #FFFFFF;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(50px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

.table2 {
    background: rgba(55, 55, 55, 0.9);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #FFFFFF;
}

/* Sidebar Styles */
.sidebar {
    width: 250px !important;
    min-width: 250px !important;
    transition: width 0.3s ease, min-width 0.3s ease;
    overflow-x: hidden;
    white-space: nowrap;
    z-index: 1000;
}

.sidebar.collapsed {
    width: 80px !important;
    min-width: 80px !important;
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
}

.sidebar.collapsed .logo-text,
.sidebar.collapsed .nav-text,
.sidebar.collapsed strong,
.sidebar.collapsed .badge,
.sidebar.collapsed hr,
.sidebar.collapsed .dropdown-toggle::after {
    display: none !important;
}

.sidebar.collapsed .nav-link {
    text-align: center;
    padding: 0.5rem 0;
}

.sidebar.collapsed .nav-link i {
    margin-right: 0 !important;
    font-size: 1.4rem;
}

.sidebar #toggleSidebar {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 6px;
    transition: all 0.2s;
    outline: none;
}

.sidebar #toggleSidebar:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.sidebar.collapsed #toggleSidebar {
    margin: 0 auto 1rem auto;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.sidebar.collapsed .d-flex.align-items-center.justify-content-between {
    flex-direction: column !important;
    gap: 1rem;
}

.sidebar.collapsed .nav-item,
.sidebar.collapsed li {
    width: 100%;
}

/* Pagination Styles to match Sidebar */
.pagination .page-link {
    background-color: #212529 !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
    color: #FFFFFF !important;
    transition: all 0.3s ease;
}

.pagination .page-link:hover {
    background-color: #343a40 !important;
    color: #FFFFFF !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
}

.pagination .page-item.active .page-link {
    background-color: #FFFFFF !important;
    color: #212529 !important;
    border-color: #FFFFFF !important;
}

.pagination .page-item.disabled .page-link {
    background-color: #212529 !important;
    color: rgba(255, 255, 255, 0.3) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.pagination .page-link:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.1) !important;
}