/* DICOM Dataset Card Styles */
.dicom-dataset-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    margin: 10px;
    background: white;
    transition: all 0.3s ease;
}

.dicom-dataset-card:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.dataset-stats {
    display: flex;
    gap: 15px;
    margin: 10px 0;
    font-size: 0.9em;
    color: #666;
}

.dataset-actions {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.dataset-actions button {
    padding: 5px 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.85em;
}

.btn-details { background: #e3f2fd; color: #1976d2; }
.btn-download { background: #e8f5e9; color: #388e3c; }
.btn-train { background: #fff3e0; color: #f57c00; }
.btn-delete { background: #ffebee; color: #d32f2f; }

.original-path {
    font-size: 0.8em;
    color: #999;
    font-family: monospace;
    word-break: break-all;
    margin-top: 8px;
    padding: 4px;
    background: #f5f5f5;
    border-radius: 4px;
}
