/* Environment-specific styles */
.env-staging {
    background-color: #FFFACD;
}

.env-production {
    background-color: #E6F3FF;
}

.env-development {
    background-color: #F0FFF0;
}

/* Evologis Gold colors */
.bg-evologis-600 {
    background-color: rgb(175, 140, 43);
}

.bg-evologis-700 {
    background-color: rgb(145, 110, 23);
}

.hover\:bg-evologis-700:hover {
    background-color: rgb(145, 110, 23);
}

/* Smooth transitions */
* {
    transition-duration: 150ms;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}
