* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

html,
body {
    width: 100%;
    height: 100%;
    font-family: Arial, sans-serif;
}

body {
    background-color: #F7F7F7;
    overflow-y: auto;
}

.bg-pastel-header {
    background-color: #AECAD5 !important;
    color: #333 !important;
}

.bg-pastel-kpi-1 {
    background-color: #B4C6E7 !important;
    color: #333 !important;
}

.bg-pastel-kpi-2 {
    background-color: #A9D18E !important;
    color: #333 !important;
}

.bg-pastel-kpi-3 {
    background-color: #FFC0CB !important;
    color: #333 !important;
}

.bg-pastel-module-header {
    background-color: #F8F9FA !important;
    color: #333 !important;
    border-bottom: 1px solid #ddd;
}

.alert-pastel-warning {
    background-color: #FFF2CC !important;
    border-color: #FFD966 !important;
    color: #333 !important;
}

.alert-pastel-warning strong {
    color: #8F6600;
}

.card {
    border-radius: .5rem;
    border: 1px solid #E0E4E8;
}

.tile-kpi {
    cursor: pointer;
    transition: transform 0.2s;
}

.tile-kpi:hover {
    transform: translateY(-3px);
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
}

.bg-primary {
    background-color: #2b2b2b !important;
}

.btn-primary {
    background-color: #7a7a7a !important;
    border-color: #000000 !important;
}

.btn-primary:hover {
    background-color: #5b5b5b !important;
    border-color: #000000 !important;
}

.btn-outline-primary {
    color: #003505;
    border-color: #003505;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background-color: #276C47;
    color: white;
}

.text-primary {
    color: #003505 !important;
}

.border-primary {
    border-color: #003505 !important;
}

.navbar {
    background-color: #000000 !important;
}

.badge-saving {
    background: #7EC4A7;
    color: #0F2A1F;
}

img {
    max-width: 100%;
    height: auto;
}

.list-header {
    background-color: #AECAD5;
    color: #333;
    font-weight: bold;
    border-radius: .5rem .5rem 0 0 !important;
    padding: .75rem 1.25rem;
    display: flex;
    align-items: center;
}

.list-header>div {
    white-space: nowrap;
}

.prodname,
.prod_desc {
    flex-basis: 35%;
}

.numeration {
    flex-basis: 5%;
}

.prod_cat {
    flex-basis: 15%;
}

.options {
    flex-basis: 10%;
    justify-content: flex-end;
}

.avatar-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.bg-pastel-kpi-3 {
    background-color: #fff9e6;
}

.store-item {
    transition: all 0.2s;
}

.btn-support-main {
    background: linear-gradient(135deg, #198754 0%, #146c43 100%);
    transition: all 0.2s ease-in-out;
    position: relative;
    cursor: pointer;
}

.btn-support-main:active {
    transform: scale(0.98);
    filter: brightness(1.1);
}

.support-icon-container {
    position: relative;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.btn-support-main::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: 0.5s;
}

.btn-support-main:hover::after {
    left: 100%;
}