/* Custom supplementary styles that go beyond Tailwind utilities */

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

img {
    background-color: #f3f4f6;
}

/* Smooth transitions for interactive elements */
a, button {
    transition: all 0.15s ease-in-out;
}

/* Admin panel table styling helpers */
.admin-table th,
.admin-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.admin-table th {
    background-color: #f9fafb;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6b7280;
}
