.card {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.icon-shape {
    width: 48px;
    height: 48px;
    background-image: linear-gradient(310deg, #7928ca 0%, #ff0080 100%);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-shape i {
    color: #fff;
    font-size: 1.5rem;
}

.numbers h5 {
    font-size: 1.5rem;
    background: linear-gradient(310deg, #2152ff, #21d4fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.chart-container canvas {
    transition: all 0.3s ease;
}

.chart-container canvas:hover {
    transform: scale(1.02);
}

.table {
    border-collapse: separate;
    border-spacing: 0 8px;
}

.table tbody tr {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.table tbody tr:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn {
    text-transform: uppercase;
    letter-spacing: 0.025em;
    transition: all 0.15s ease;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(50, 50, 93, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
}

.btn i {
    transition: transform 0.2s ease;
}

.btn:hover i {
    transform: translateX(3px);
}

.text-gradient {
    background: linear-gradient(310deg, #2152ff, #21d4fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}