.mini-list-item .item-link, .mini-list-item .mini-image img {
    width: 40px;
    min-width: 40px;
    display: block;
    min-height: 40px;
    height: auto;
}
.service-wrap .box {
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.service-wrap .box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    border-color: #007bff;
}

.service-wrap .service-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    color: #2c3e50;
}

.badge {
    font-size: 0.75rem;
    margin: 0 2px;
}

.sidebar-widget {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.mini-list-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e9ecef;
}

.mini-list-item:last-child {
    border-bottom: none;
}

.mini-list-item .item-title {
    font-weight: 500;
    color: #2c3e50;
    text-decoration: none;
    font-size: 0.9rem;
}

.mini-list-item .item-title:hover {
    color: #007bff;
}

.alert-info {
    border-radius: 8px;
    border: 1px solid #b3d7ff;
}

.btn-sm {
    font-size: 0.8rem;
    margin: 0 3px;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.btn-sm:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

.badge.bg-success {
    background-color: #28a745 !important;
}

.badge.bg-warning {
    background-color: #ffc107 !important;
    color: #212529;
}

/* Animation cho các card */
.service-wrap {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.service-wrap:nth-child(1) { animation-delay: 0.1s; }
.service-wrap:nth-child(2) { animation-delay: 0.2s; }
.service-wrap:nth-child(3) { animation-delay: 0.3s; }
.service-wrap:nth-child(4) { animation-delay: 0.4s; }
.service-wrap:nth-child(5) { animation-delay: 0.5s; }
.service-wrap:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* Responsive improvements */
@media (max-width: 768px) {
    .service-wrap .box {
        padding: 1rem;
    }
    
    .sidebar-widget {
        padding: 1rem;
    }
}