/* Kontrak Kerja Module Styles */
.card-item {
    position: relative;
    transition: all 0.3s ease;
}

.card-item:hover {
    background-color: #f8f9fa;
}

.card-item-body {
    padding: 1.25rem;
}

.border-left-success {
    border-left: 4px solid #2dce89;
}

.border-left-warning {
    border-left: 4px solid #fb6340;
}

.border-left-danger {
    border-left: 4px solid #f5365c;
}

.badge-success {
    background-color: #2dce89;
    color: white;
    padding: 0.5em 0.75em;
    border-radius: 0.375rem;
}

.badge-warning {
    background-color: #fb6340;
    color: white;
    padding: 0.5em 0.75em;
    border-radius: 0.375rem;
}

.badge-danger {
    background-color: #f5365c;
    color: white;
    padding: 0.5em 0.75em;
    border-radius: 0.375rem;
}

.bg-success-light {
    background-color: rgba(45, 206, 137, 0.1) !important;
}

.bg-warning-light {
    background-color: rgba(251, 99, 64, 0.1) !important;
}

.bg-danger-light {
    background-color: rgba(245, 54, 92, 0.1) !important;
}

.bg-primary-light {
    background-color: rgba(54, 124, 252, 0.1) !important;
}

.bg-light {
    background-color: #f8f9fa !important;
}

.text-success {
    color: #2dce89 !important;
}

.text-warning {
    color: #fb6340 !important;
}

.text-danger {
    color: #f5365c !important;
}

.text-primary {
    color: #366ff2 !important;
}

.text-muted {
    color: #8898aa !important;
}

.font-weight-bold {
    font-weight: 600 !important;
}

.rounded-lg {
    border-radius: 0.5rem !important;
}

.shadow-sm {
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.125) !important;
}

.border-0 {
    border: 0 !important;
}

.border-bottom {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
}

.btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
    line-height: 1.5;
    border-radius: 0.25rem;
}

.btn-primary {
    background-color: #366ff2;
    border-color: #366ff2;
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: all 0.15s ease;
}

.btn-primary:hover {
    background-color: #2655de;
    border-color: #2655de;
}

.avatar {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 600;
}

.avatar-40 {
    width: 40px;
    height: 40px;
}

.avatar-50 {
    width: 50px;
    height: 50px;
}

.avatar-80 {
    width: 80px;
    height: 80px;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .card-item-body {
        padding: 1rem;
    }

    .avatar-50 {
        width: 40px;
        height: 40px;
    }

    .avatar-80 {
        width: 60px;
        height: 60px;
    }
}