/* Rejestr Psychoterapeutów - Style */

.psychotherapist-registry-wrapper {
	width: 100%;
	margin: 0 auto;
}

.psychotherapist-registry-search {
	margin-bottom: 20px;
}

.psychotherapist-registry-search input {
	width: 100%;
	padding: 12px 16px;
	font-size: 16px;
	border: 1px solid #ddd;
	border-radius: 4px;
	box-sizing: border-box;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.psychotherapist-registry-search input:focus {
	outline: none;
	border-color: #0073aa;
	box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.1);
}

.psychotherapist-registry-table-container {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.psychotherapist-registry-table {
	width: 100%;
	border-collapse: collapse;
	margin: 0;
	background-color: #fff;
}

.psychotherapist-registry-table thead th {
	padding: 16px;
	text-align: left;
	font-weight: 600;
	border-bottom: 2px solid #ddd;
	position: sticky;
	top: 0;
	z-index: 10;
}

.psychotherapist-registry-table tbody td {
	padding: 14px 16px;
	border-bottom: 1px solid #e5e5e5;
	transition: background-color 0.2s ease;
}

/* Co drugi wiersz z lekko szarym tłem */
.psychotherapist-registry-table tbody tr:nth-child(even) {
	background-color: #f9f9f9;
}

/* Podświetlanie przy najechaniu */
.psychotherapist-registry-table tbody tr:hover {
	background-color: #e8f4f8 !important;
	cursor: pointer;
}

/* Ukryj wiersze podczas wyszukiwania */
.psychotherapist-registry-table tbody tr.hidden {
	display: none;
}

.psychotherapist-registry-table tbody tr.no-results {
	text-align: center;
	color: #666;
	font-style: italic;
}

.psychotherapist-registry-table tbody tr.no-results td {
	padding: 40px 16px;
}

/* Responsywność */
@media (max-width: 768px) {
	.psychotherapist-registry-table {
		font-size: 14px;
	}

	.psychotherapist-registry-table thead th,
	.psychotherapist-registry-table tbody td {
		padding: 10px 12px;
	}

	.psychotherapist-registry-search input {
		font-size: 14px;
		padding: 10px 14px;
	}
}

@media (max-width: 480px) {
	.psychotherapist-registry-table thead th,
	.psychotherapist-registry-table tbody td {
		padding: 8px 10px;
		font-size: 13px;
	}
}



