.text-mauve {
    color: #9e00d3;
}

.btn-danger {
    background-color: #6f00a8 !important;
    border-color: #9e00d3 !important;
    color: #fff !important;
    transition: background-color 0.3s ease;
}

.btn-danger:hover {
    background-color: #8c00c9 !important;
    border-color: #b452ff !important;
}

.icon-circle {
    width: 100px;
    height: 100px;
    line-height: 100px;
    border-radius: 50%;
    font-size: 2rem;
    display: inline-block;
    text-align: center;
    margin-bottom: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.icon-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(111, 0, 168, 0.4);
}

.bg-mauve {
    background-color: #6f00a8;
    color: #fff;
}

.border-mauve {
    border: 2px solid #6f00a8;
    color: #6f00a8;
}

/* Delays personnalisées Animate.css */
.animate__delay-1_2s {
    animation-delay: 1.2s !important;
}

.animate__delay-1_4s {
    animation-delay: 1.4s !important;
}

.animate__delay-1_6s {
    animation-delay: 1.6s !important;
}

.animate__delay-1_8s {
    animation-delay: 1.8s !important;
}

.hover-scale {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.03);
    box-shadow: 0 0 20px rgba(111, 0, 168, 0.2);
}

.card-img-top {
    object-fit: cover;
    height: 200px;
    border-bottom: 1px solid #eee;
}

.text-white-75 {
    color: rgba(255, 255, 255, 0.75) !important;
}