﻿/* Dashboard Card Styling */
.info-card {
    border: none;
    border-radius: 15px;
    transition: all 0.3s ease-in-out;
    position: relative;
    /* overflow: hidden; */
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Gradient Variants */
/*.red-gradient {
    background: linear-gradient(135deg, #dc2626 0%, #dc7c26 100%);
}*/

.orange-gradient {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

/* Glassmorphism Badge */
.card-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    /*background: linear-gradient(135deg, #dc2626 0%, #dc7c26 100%);*/
    backdrop-filter: blur(5px);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff !important;
}

/* Icon Design */
.card-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.card-title {
    font-weight: 600;
    margin-bottom: 0;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    /* color:#fff !important; */
}

/* Hover Effects */
.hover-zoom:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

    .hover-zoom:hover .card-icon {
        background: rgba(255, 255, 255, 0.4);
        transform: rotate(10deg);
        transition: 0.3s;
    }

/* Dashboard spacing */
.dashboard .row {
}

/* Breadcrumb Styling */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 20px;
}
