﻿/* wwwroot/css/identity-custom.css */
body {
    background-color: #f0f0f0; /* Example background color */
}

.navbar {
    background-color: #4CAF50; /* Example navbar color */
}

.btn-primary {
    background-color: #902bf5; /* Change button primary color */
    border-color: #ff6347;
}

.btn-primary:hover {
    background-color: #a14bf8; /* Change button primary color */
    border-color: #ff6347;
}

.btn-primary:active {
    background-color: #a14bf8; /* Change button primary color */
    border-color: #ff6347;
}
.text-center {
    color: #333333; /* Example text color */
}

.nav-link.active {
    background-color: #902bf5 !important;
    color: white !important;
}
/*.nav-link {
    color: #902bf5 !important;
}*/