﻿:root {
    --eanox-primary: #f5f6f8;
    --eanox-secondary: #6c757d;
    --eanox-light: #f5f6f8;
}

body {
    background: var(--eanox-primary);
}

.navbar {
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.08);
}

.navbar-brand img {
    height: 60px;
}

.dashboard-card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,.08);
    transition: all .2s ease;
}

    .dashboard-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 18px rgba(0,0,0,.12);
    }

.dashboard-number {
    font-size: 1rem;
    font-weight: 700;
}

.dashboard-small {
    font-size: .80rem;

}

.dashboard-title {
    color:  orange;
    font-size: .95rem;
}

.page-title {
    color: orange;
    font-weight: 600;
    margin-bottom: 25px;
}

h2 {
    color: orange;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

h4 {
    color: orange;
    margin-top: 10px;
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 1.1rem;
}

.catalog-card {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    transition: box-shadow 0.2s ease;
    background: white;
}

.catalog-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.detail-row {
    display: grid;
    grid-template-columns: 180px 1fr;
    margin-bottom: 8px;
}

.detail-label {
    color: #6c757d;
}

.detail-value {
    font-weight: 600;
}

html,
body {
    min-height: 100%;
    height: auto;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1 0 auto;
}

footer.footer {
    position: static !important;
    flex-shrink: 0;
    width: 100%;
    margin-top: 30px;
}
