/**
 * Frontend styles for LandTech Self Storage API
 */

.landtech-selfstorage-location,
.landtech-selfstorage-units {
	margin: 20px 0;
}

.landtech-selfstorage-location-title,
.landtech-selfstorage-units-title {
	margin-bottom: 15px;
}

.landtech-selfstorage-address {
	margin: 10px 0;
}

.landtech-selfstorage-phone {
	margin: 10px 0;
}

.landtech-selfstorage-hours {
	margin: 15px 0;
}

.landtech-selfstorage-hours ul {
	list-style: none;
	padding-left: 0;
}

.landtech-selfstorage-hours li {
	margin: 5px 0;
}

.landtech-selfstorage-units-grid {
	display: grid;
	grid-template-columns: repeat( auto-fill, minmax( 250px, 1fr ) );
	gap: 20px;
	margin-top: 20px;
}

.landtech-selfstorage-unit-card {
	border: 1px solid #ddd;
	border-radius: 4px;
	padding: 15px;
	background: #fff;
}

.landtech-selfstorage-unit-card h3 {
	margin-top: 0;
}

.landtech-selfstorage-unit-price {
	font-size: 1.2em;
	color: #2271b1;
	margin: 10px 0;
}

.landtech-selfstorage-error {
	background: #f8d7da;
	border: 1px solid #f5c6cb;
	color: #721c24;
	padding: 15px;
	border-radius: 4px;
	margin: 20px 0;
}

.landtech-selfstorage-upgrade-notice {
	text-align: center;
}

.landtech-selfstorage-upgrade-notice a {
	font-weight: bold;
}

@media ( max-width: 768px ) {
	.landtech-selfstorage-units-grid {
		grid-template-columns: 1fr;
	}
}
