:root {
    /* Professional Color Palette */
    --midnight-navy: #1A1F36;
    --deep-plum: #5A3D6B;
    --soft-lilac: #C9B7F5;
    --blush-beige: #F6E7E1;
    --charcoal-gray: #2C2C2C;
    --pure-white: #FFFFFF;
    
    /* Button colors using new palette */
    --btn-bgcolor: var(--midnight-navy);
    --btn-bgcolor-onhover: var(--deep-plum);
    --color-white: var(--pure-white);
    --border-color: rgba(90, 61, 107, 0.2);
    
    /* Additional utility colors */
    --accent-primary: var(--soft-lilac);
    --background-soft: var(--blush-beige);
    --text-primary: var(--midnight-navy);
    --text-secondary: var(--deep-plum);
    --text-body: var(--charcoal-gray);
}

.flexrow {
    display: flex;
    flex-direction: row;
}

.pointer {
    cursor: pointer;
}

.grab {
    cursor: grab;
}

.grab:active {
    cursor: grabbing;
}

.underlinehover:hover {
    text-decoration: underline !important;
}

.width100 {
    width: 100% !important;
}

.width50 {
    width: 50% !important;
}

.heigth100 {
    height: 100% !important;
}

.list-style {
    list-style: none;
}

.margin0 {
    margin: 0 !important;
}

.white-space-nowrap {
    white-space: nowrap;
}

.border-radius-10 {
    border-radius: 10px;
}

.font-color {
    color: var(--text-body) !important;
}

/* Enhanced typography */
.text-primary-brand {
    color: var(--text-primary) !important;
}

.text-secondary-brand {
    color: var(--text-secondary) !important;
}

.text-accent {
    color: var(--accent-primary) !important;
}

.bg-soft {
    background-color: var(--background-soft) !important;
}

.bg-primary-brand {
    background-color: var(--midnight-navy) !important;
    color: var(--pure-white) !important;
}

.bg-accent {
    background-color: var(--accent-primary) !important;
    color: var(--midnight-navy) !important;
}

.default-cursor {
    cursor: default;
}

.cursor-not-allowed {
    cursor: not-allowed;
}

.heigth315px {
    height: 315px;
}

.border-top {
    border-top: solid 1px #80808059;
}

.border-bottom {
    border-bottom: solid 1px #80808059;
}

.margin-left-11px {
    margin-left: 11px;
}

.background-none {
    background: none !important;
}

.text-hover-effect:hover {
    color: var(--soft-lilac) !important;
    text-decoration: underline !important;
    transition: color 0.3s ease;
}

/* Enhanced hover effects */
.btn-hover-lift:hover {
    transform: translateY(-2px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 25px rgba(26, 31, 54, 0.15);
}

.card-hover-effect:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(26, 31, 54, 0.1);
}

/* Improved visual hierarchy */
.border-soft {
    border: 1px solid var(--border-color) !important;
}

.border-accent {
    border: 1px solid var(--accent-primary) !important;
}

.shadow-soft {
    box-shadow: 0 4px 20px rgba(26, 31, 54, 0.1) !important;
}

.shadow-medium {
    box-shadow: 0 8px 30px rgba(26, 31, 54, 0.15) !important;
}

.border {
    border: solid 1px var(--border-color);
}

.border-top {
    border-top: solid 1px var(--border-color);
}
.border-bottom {
    border-bottom: solid 1px var(--border-color);
}
.border-left {
    border-left: solid 1px var(--border-color);
}
.bg-light-gray{
    background: #f8f9fa;
}
.vertical-align-middle{
    vertical-align: middle;
}
.card-h-430{
    height: 418px !important;
}
.btn-primary {
    color: #fff;
    background-color: #1c61e7;
    border-color: #1c61e7;
}
.btn-primary:hover {
    color: #fff;
    background-color: rgb(32, 90, 207);
}
.btn-close:focus {
    outline: 0;
    box-shadow: none;
    opacity: 1;
}
.mb-20px{
    margin-bottom: 20px;
}
.border-radius-5{
    border-radius: 5px !important;
}
@media (max-width:767px) {
    .fs-md-12{
        font-size: 12px;
    }
}
