/*
Template Name: Velzon - Admin & Dashboard Template
Author: Themesbrand
Website: https://themesbrand.com/
Contact: support@themesbrand.com
File: Custom Css File
*/

/* Light Color */
.text-light {
    background-color: #ffe9d0 !important;
    color: #011944 !important; /* Assuming you want dark text on a light background */
}

/* Dark Color */
.bg-dark, .text-dark {
    background-color: #011944 !important;
    color: #ffe9d0 !important; /* Assuming you want light text on a dark background */
}

/* Primary Color */
.btn-primary, .badge-primary, .alert-primary {
    background-color: #f16824 !important;
    border-color: #f16824 !important;
    color: #fff !important;
}
.text-primary {
    color: #f16824 !important;
}
    /* Secondary Color */
    .btn-secondary, .badge-secondary, .alert-secondary {
        background-color: #ea563c !important;
        border-color: #ea563c !important;
        color: #fff !important;
    }
.text-secondary {
    color: #ea563c !important;
}
/* Info Color */
.btn-info, .badge-info, .alert-info, .text-info {
    background-color: #fe9252 !important;
    border-color: #fe9252 !important;
    color: #fff !important;
}

/* Success Color */
.btn-success, .badge-success, .alert-success, .text-success {
    background-color: #61b307 !important;
    border-color: #61b307 !important;
    color: #fff !important;
}

/* Warning Color */
.btn-warning, .badge-warning, .alert-warning, .text-warning {
    background-color: #ffc476 !important;
    border-color: #ffc476 !important;
    color: #011944 !important; /* Assuming dark text on warning color, adjust if needed */
}

.btn-danger, .badge-danger {
    background-color: #e30303 !important;
    border-color: #e30303 !important;
    color: #fff !important;
}