.training-card {
    border-radius: 15px;
    border: 1px solid #e0e0e0;
    padding: 20px;
    background: #fff;
    height: 100%;
    transition: 0.3s;
}

.training-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

.card-title {
    font-weight: 600;
    color: #1f7a4c;
}

.badge-new {
    background: red;
    font-size: 10px;
    margin-left: 5px;
}

.info-text {
    color: #6c757d;
    font-size: 14px;
}

.duration {
    color: #e63946;
    font-weight: 600;
}

.apply-btn {
    border-radius: 25px;
    padding: 5px 18px;
    font-weight: 500;
}
    
.training-carousel .item img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 12px;
}

.training-swiper img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
}

@media (min-width: 992px) {
    .training-swiper img {
        height: 260px;
    }
}

.input-ok {
    border-color: #28a745 !important;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.15),
                0 4px 10px rgba(40, 167, 69, 0.1);
    transition: all 0.25s ease;
}

.input-error {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.15),
                0 4px 10px rgba(220, 53, 69, 0.1);
    transition: all 0.25s ease;
}

.toast {
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    font-size: 14px;
}

.bg-lightgray {
    background-color: #E8E8E8;
}

.text-gradient-danger {
    background: linear-gradient(45deg, #ff4d4d, #cc0000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    transition: all 0.3s ease;
}

.text-gradient-danger:hover {
    background: linear-gradient(45deg, #ff1a1a, #990000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}