/* Production Environment CSS - Blue Theme */

/* Standard Bootstrap primary color for production */
:root {
    --bs-primary: #0d6efd !important;
    --bs-primary-rgb: 13, 110, 253 !important;
}

/* Navigation bar - Blue theme for production */
.navbar-dark.bg-primary {
    background-color: #0d6efd !important;
}

.navbar-dark.bg-primary .navbar-brand,
.navbar-dark.bg-primary .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
}

.navbar-dark.bg-primary .navbar-nav .nav-link:hover,
.navbar-dark.bg-primary .navbar-nav .nav-link:focus {
    color: #ffffff !important;
}

.navbar-dark.bg-primary .navbar-nav .nav-link.active {
    color: #ffffff !important;
    font-weight: 600;
}

/* Production environment indicator */
.navbar-brand::after {
    content: " ";
    font-size: 0.8em;
    color: #dc3545;
    font-weight: normal;
}

/* Button overrides for production */
.btn-primary {
    background-color: #0d6efd !important;
    border-color: #0d6efd !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: #0b5ed7 !important;
    border-color: #0b5ed7 !important;
}

/* Alert and badge overrides */
.alert-primary {
    background-color: #cfe2ff !important;
    border-color: #b6d4fe !important;
    color: #084298 !important;
}

.badge-primary {
    background-color: #0d6efd !important;
}

/* Form control focus states */
.form-control:focus,
.form-select:focus {
    border-color: #0d6efd !important;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25) !important;
}

/* Link colors */
a {
    color: #0d6efd;
}

a:hover {
    color: #0b5ed7;
}

/* Custom production styling */
.prod-indicator {
    position: fixed;
    top: 10px;
    right: 10px;
    background-color: #0d6efd;
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
    z-index: 9999;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Production-specific styling - more professional */
.navbar-brand {
    font-weight: 600;
}

/* Remove development animations for production */
.navbar-brand {
    animation: none;
}