/* Avatar styling */
.avatar {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
}

/* Avatar sizes */
.avatar-sm {
    width: 36px;
    height: 36px;
    line-height: 36px;
    font-size: 14px;
}

/* Hover effects for table rows */
.table-hover tbody tr:hover {
    background-color: rgba(13, 110, 253, 0.05);
}

/* Badge styling improvements */
.badge {
    font-weight: 500;
    padding: 0.35em 0.65em;
}

/* Button hover effect */
.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.2s;
}

/* Card hover effect */
.card {
    transition: all 0.3s;
}
.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* Fixed height for collapsed content */
.collapse .card-body {
    max-height: 200px;
    overflow-y: auto;
}

/* Fix for action buttons */
.btn-group .btn {
    position: relative;
    z-index: 1;
}

/* Improve form input appearance */
.form-control:focus, 
.form-select:focus {
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}