body {
    background-color: #f8f9fa;
}

.card {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

.card:hover {
    transform: translateY(-5px);
}

.card-header {
    background-color: #f1f8ff;
    border-bottom: 2px solid #e3f2fd;
}

.sample-list {
    margin-bottom: 1rem;
}

.audio-player {
    width: 100%;
    margin-bottom: 1rem;
}

.audio-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.sample-name {
    font-weight: 500;
    color: #2c3e50;
}

/* Table styles for task pages */
.samples-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.samples-table th,
.samples-table td {
    padding: 0.75rem;
    border: 1px solid #dee2e6;
}

.samples-table th {
    background-color: #f8f9fa;
    font-weight: 600;
}

.samples-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

.samples-table tr:hover {
    background-color: #e9ecef;
}

/* Audio player container */
.audio-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem;
}

/* Method column styling */
.method-column {
    font-weight: 500;
    color: #495057;
}

/* Pagination styles */
.pagination-container {
    margin-top: 20px;
}

.pagination {
    margin-bottom: 0;
}

.page-link {
    color: #007bff;
    cursor: pointer;
}

.page-item.active .page-link {
    background-color: #007bff;
    border-color: #007bff;
}

.page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    cursor: not-allowed;
} 