.table-hover tbody tr:hover {
    background-color: rgba(102, 126, 234, 0.05);
    transition: all 0.2s ease;
}

.badge {
    font-size: 0.8em;
    padding: 0.4em 0.8em;
}

.btn-group .btn {
    margin-right: 2px;
}

.form-group label {
    font-weight: 500;
    color: #495057;
    margin-bottom: 0.5rem;
}

.card-header {
    background: linear-gradient(135deg, var(--gray-600) 0%, var(--gray-800) 100%);
    color: white;
    border-bottom: none;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.pagination .page-link {
    color: #667eea;
}

.pagination .page-item.active .page-link {
    background-color: #667eea;
    border-color: #667eea;
}

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

.card {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.btn-sm {
    font-size: 0.8rem;
    padding: 0.25rem 0.5rem;
}

.search-form {
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.status-badge {
    border-radius: 20px;
    padding: 0.25rem 0.75rem;
}

.action-buttons {
    white-space: nowrap;
}

/* Avatar styles */
.avatar-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
}

/* Form section styles */
.form-section {
    background-color: rgba(0, 0, 0, 0.02);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-section-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: #667eea;
    display: flex;
    align-items: center;
}

.form-section-title i {
    margin-right: 0.5rem;
}

/* Tooltip enhancements */
.tooltip .tooltip-inner {
    background-color: #764ba2;
    padding: 0.5rem 1rem;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.tooltip.bs-tooltip-top .tooltip-arrow::before {
    border-top-color: #764ba2;
}

.tooltip.bs-tooltip-bottom .tooltip-arrow::before {
    border-bottom-color: #764ba2;
}

/* Responsive table enhancements */
@media (max-width: 768px) {
    .table-responsive {
        font-size: 0.9rem;
    }
    
    .table-responsive td {
        padding: 0.75rem 0.5rem;
    }
    
    .btn-group {
        flex-direction: column;
    }
    
    .btn-group .btn {
        margin-bottom: 2px;
        margin-right: 0;
    }
    
    .avatar-circle {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
}

/* Required field indicator */
.required-field::after {
    content: '*';
    color: #dc3545;
    margin-left: 4px;
}

/* Help text styling */
.help-text {
    font-size: 0.8rem;
    color: #6c757d;
    margin-top: 0.25rem;
}

/* Form buttons area */
.form-buttons {
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Success button */
.btn-success {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border: none;
}

.btn-success:hover {
    background: linear-gradient(135deg, #218838 0%, #1e9a7a 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
} 