.custom-csv-display {
    margin-top: 20px;
}

.custom-csv-display .tab {
    cursor: pointer;
    padding: 10px 30px;
    background-color: #f2f2f2;
	border: 1px solid #e6e6e6;
}

.custom-csv-display .tab-content {
    display: none;
}

.custom-csv-display .tab.active {
    background-color: #e6e6e6;
}

.custom-csv-display table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.custom-csv-display table, .custom-csv-display th, .custom-csv-display td {
    border: 1px solid #ddd;
}

.custom-csv-display th, .custom-csv-display td {
    padding: 8px !important;
    text-align: left;
	width: 33.33333333%;
}

.custom-csv-display .tab-container {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	margin-bottom: 10px;
	justify-content: center;
}

@media (max-width: 767px) {
	.custom-csv-display .tab {
		width:25%;
		padding: 10px 0;
		text-align: center;
	}
}

/* Nasconde il contenuto del tab senza usare display:none */
.tab-content.tab-hidden {
    position: absolute !important;
    top: -9999px !important;
    left: -9999px !important;
    height: 0 !important;
    max-height: 0 !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    visibility: hidden !important;
}

/* Mostra il tab attivo */
.tab-content.tab-active {
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    height: auto !important;
    max-height: none !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    visibility: visible !important;
}