/* ============================================================
   Appointment Page Styles - CSS Classes Only
   ============================================================ */

/* Status Badge */
.med-status-wrapper {
	text-align: center;
	margin: 1rem 0;
}

.med-status-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1rem;
	border-radius: 20px;
	font-size: 0.9rem;
	font-weight: 500;
}

.med-status-open {
	background: rgba(76, 175, 80, 0.9);
	color: #fff;
}

.med-status-closed {
	background: rgba(244, 67, 54, 0.9);
	color: #fff;
}

.med-status-dot {
	width: 8px;
	height: 8px;
	background: #fff;
	border-radius: 50%;
}

/* Contact Card */
.medical-contact-card {
	margin-bottom: 1rem;
}

.medical-contact-link {
	display: flex;
	align-items: center;
	gap: 1rem;
	color: #fff;
	text-decoration: none;
}

.medical-contact-icon {
	width: 44px;
	height: 44px;
	background: rgba(255,255,255,0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	flex-shrink: 0;
}

.medical-contact-label {
	font-size: 0.8rem;
	opacity: 0.8;
}

.medical-contact-value {
	font-size: 1.5rem;
	font-weight: 700;
}

.medical-contact-note {
	font-size: 0.8rem;
	opacity: 0.7;
}

/* Card Variants */
.med-card-highlight {
	position: relative;
	border-left: 4px solid var(--med-success);
	overflow: visible !important;
	padding-top: 1.5rem !important;
}

.med-border-success {
	border-left: 4px solid var(--med-success);
}

.med-border-info {
	border-left: 4px solid var(--med-info);
}

.med-border-primary {
	border-left: 4px solid var(--med-primary);
}

/* Card Icon Wrap */
.med-card-icon-wrap {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
	font-size: 1.75rem;
}

.med-bg-success {
	background: var(--med-success);
	color: #fff;
}

.med-bg-info {
	background: var(--med-info);
	color: #fff;
}

.med-bg-primary {
	background: var(--med-primary);
	color: #fff;
}

/* Card Elements */
.med-card-title {
	font-size: 1.2rem;
	margin-bottom: 0.5rem;
	text-align: center;
}

.med-card-text {
	color: var(--med-text-light);
	font-size: 0.95rem;
	margin-bottom: 1rem;
	line-height: 1.5;
	text-align: center;
}

.med-card-features {
	list-style: none;
	margin: 0 0 1.5rem;
	padding: 0;
	text-align: left;
}

.med-card-features li {
	padding: 0.25rem 0;
	padding-left: 1.25rem;
	position: relative;
	font-size: 0.9rem;
}

.med-card-features li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--med-success);
	font-weight: bold;
}

.med-border-info .med-card-features li::before {
	color: var(--med-info);
}

.med-border-primary .med-card-features li::before {
	color: var(--med-primary);
}

/* Button Group */
.med-btn-group {
	display: flex;
	gap: 0.5rem;
	justify-content: center;
	flex-wrap: wrap;
}

.med-btn-group-center {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

/* List Check */
.med-list-check {
	list-style: none;
	margin: 0;
	padding: 0;
}

.med-list-check li {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.75rem 0;
	border-bottom: 1px solid var(--med-border);
}

.med-list-check li:last-child {
	border-bottom: none;
}

.med-list-check li::before {
	content: '✓';
	width: 24px;
	height: 24px;
	background: var(--med-success);
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.75rem;
	flex-shrink: 0;
}

/* Card Danger & Warning */
.med-card-danger {
	border-left: 4px solid var(--med-danger);
	margin-bottom: 1.5rem;
}

.med-card-header-danger {
	color: var(--med-danger);
	margin-bottom: 0.75rem;
}

.med-card-warning {
	border-left: 4px solid var(--med-warning);
}

.med-card-header-warning {
	color: var(--med-warning);
	margin-bottom: 0.75rem;
}

.emergency-phone {
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--med-danger);
	text-decoration: none;
	display: block;
	margin-top: 0.75rem;
}

.emergency-phone:hover {
	color: #b71c1c;
}

.emergency-note {
	margin-top: 0.5rem;
	font-size: 0.9rem;
	color: var(--med-text-muted);
}

.emergency-note a {
	color: var(--med-danger);
}

/* Location Section */
.location-info {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.location-item {
	display: flex;
	gap: 1rem;
}

.location-icon {
	font-size: 1.5rem;
	width: 40px;
	text-align: center;
	flex-shrink: 0;
}

.location-item h3 {
	margin-bottom: 0.25rem;
	font-size: 1.1rem;
}

.location-item p {
	margin: 0;
	color: var(--med-text-light);
	line-height: 1.5;
}

.location-map {
	width: 100%;
	height: 350px;
	border-radius: var(--med-radius);
	overflow: hidden;
	border: 1px solid var(--med-border);
}

.location-map iframe {
	width: 100%;
	height: 100%;
	border: 0;
}

.map-placeholder {
	width: 100%;
	height: 100%;
	background: var(--med-bg-light);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: var(--med-text-muted);
	text-align: center;
	padding: 2rem;
}

.map-placeholder span {
	font-size: 3rem;
	margin-bottom: 0.5rem;
}

/* Text Utilities */
.med-text-white {
	color: #fff;
}

.med-subtitle-white {
	color: rgba(255,255,255,0.9);
	margin-bottom: 2rem;
	font-size: 1.1rem;
}

/* CTA Section */
.med-section-gradient {
	background: linear-gradient(135deg, var(--med-primary) 0%, var(--med-secondary) 100%);
	padding: 4rem 0;
	color: #fff;
}
