/*!
 * Theme Name: Default
 * Package : DashLite
 * Author: Softnio
 * Author URI: http://themeforest.net/user/softnio
 * Version	 :	1.0.0
 * Updated	 :	07.23.2020
**/

.req{
    color: #dc3545!important;
}
.content {
    padding: 20px;
}

.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.card-header {
    background-color: #ffffff;
    border-bottom: none;
    font-weight: 600;
}

.chart-container {
    position: relative;
    height: 200px;
}
.chart-container2 {
    position: relative;
    height: 200px;
}

.table {
    background-color: #ffffff;
    border-radius: 10px;
}

.btn-primary {
    background-color: #007bff;
    border: none;
}

.btn-primary:hover {
    background-color: #0056b3;
}

.filter-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.is-invalid {
    border-color: #dc3545;
}

.invalid-feedback {
    display: none;
}

.is-invalid~.invalid-feedback {
    display: block;
}

/* start of my css */



body {
    background-color: #f8f9fa;
    padding: 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}




/* style for the frst nk content */
.nk-activity-item {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 15px;
}

.nk-activity-review {
    margin-left: auto;
    text-align: right;
}

.rating {
    margin-right: 4px;
}


/* style for the secnd nk content */
.nk-activity-item-shs {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
}

.nk-activity-media {
    margin-right: 10px;
}

.nk-activity-data {
    flex-grow: 1;
}

.nk-activity-review-shs {
    margin-left: auto;
    text-align: right;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.rating-real{
    color: #c9ac0b; /* yellow color for price */
    font-size: 14px;
    font-weight: bold;
}
.rating {
    color: #000; /* Black color for price */
    font-size: 14px;
    font-weight: bold;
}

.reviews {
    font-size: 12px;
    color: #666;
}

.time {
    color: #666;
    font-size: 12px;
}

.user-avatar {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    font-size: 12px;
    color: #fff;
    text-transform: uppercase;
}

.bg-success { background-color: #2ecc71; }
.bg-warning { background-color: #f1c40f; }
.bg-azure { background-color: #1abc9c; }
.bg-purple { background-color: #9b59b6; }
.bg-info { background-color: #3498db; }

.card-title-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-tools-nav li a {
    text-transform: uppercase;
    color: #007bff;
    font-size: 12px;
}

.card-inner {
    padding: 15px;
}

.nk-activity {
    list-style: none;
    padding: 0;
    margin: 0;
}/* Graph Styles */
.expense-chart-container {
    position: relative;
    height: 200px;
}

.income-chart-container {
    position: relative;
    height: 200px;
}

/* Shared Card Styles */
.card-title-group {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.card-inner {
    padding: 15px;
}

/* Expense Section Styles */
.expense-data {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.expense-data .amount {
    font-size: 20px;
    font-weight: bold;
    color: #000;
}

.expense-data .change {
    font-size: 12px;
    color: #2eca7b; /* Green color for +4.63% */
}

/* Income Section Styles */
.income-data {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.income-data .amount {
    font-size: 20px;
    font-weight: bold;
    color: #000;
}

.income-data .change {
    font-size: 12px;
    color: #2eca7b; /* Green color for +7.63% */
}

@media (max-width: 768px) {
    .header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .actions {
        width: 100%;
    }
    
    .metrics {
        grid-template-columns: 1fr;
    }
    
    .enrollment-stats {
        flex-direction: column;
        gap: 15px;
    }
}
.hidden {
    display: none!important;
}
@keyframes flashGreen {
    0% { background-color: #d4edda; } 
    100% { background-color: transparent; }
}

.new-row {
    animation: flashGreen 5s ease-in-out;
}

