﻿
/* Popup Ekranı Ortalamak İçin */
.mobile-container {
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 90%;
	max-width: 1000px;
	padding: 20px;
}

/* İç Bölge Ayarları */
.mobile-secondary-area {
	background-color: white;
	border: 1px solid black;
	border-radius: 10px;
	padding: 20px;
	text-align: center;
	overflow-x: auto;
	overflow-y: auto;
	width: 100%;
	max-width: 1000px;
	max-height: 600px;
	box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

/* Sayfa Başlığı */
.mobile-page-title h1 {
	font-size: 22px;
	font-weight: bold;
	margin-bottom: 20px;
}

/* Tarih Seçici */
.mobile-daypicker {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	gap: 10px;
	margin-bottom: 15px;
}

	.mobile-daypicker a {
		background: #2a67ac;
		color: white;
		padding: 8px 12px;
		cursor: pointer;
		text-decoration: none;
		font-size: 12px;
	}

/* Tablo Stilleri */
.mobile-table {
	margin-top: 10px;
	margin: 0 auto;
	width: 80%;
}

	.mobile-table th, .mobile-table td {
		border: 1px solid #ddd;
		padding: 6px;
		text-align: center;
		font-size: 14px;
		line-height: 1;
	}

	.mobile-table th {
		background: #2a67ac;
		color: white;
		padding: 8px;
	}

/* Müsaitlik Durumu Barı */
.mobile-availability-bar {
	height: 10px;
	background: green;
	border-radius: 5px;
	display: inline-block;
	transition: width 0.3s ease-in-out;
}

.mobile-full {
	color: red;
}

/* Seç Butonu */
.mobile-select-button {
	background: white;
	border: 1px solid #2a67ac;
	padding: 5px 10px;
	border-radius: 5px;
	cursor: pointer;
	color: #2a67ac;
	font-size: 14px;
	width: 80px;
}

.mobile-select-a {
	text-decoration: none !important;
}

.mobile-select-button:disabled {
	background: #ddd;
	color: #999;
	cursor: not-allowed;
}

/* Kapat Butonu */
.mobile-button.mobile-close {
	display: inline-block;
	background-color: #2a67ac;
	color: white;
	border: 1px solid #2a67ac;
	padding: 10px 20px;
	text-decoration: none;
	border-radius: 5px;
	font-size: 16px;
	margin-top: 20px;
	cursor: pointer;
}

/* Mobil Uyumlu Tasarım */
@media (max-width: 768px) {
	.mobile-secondary-area {
		padding: 15px;
		width: 100%;
		max-width: 90%;
		max-height: 85vh;
	}

	.mobile-select-button {
		min-width: 80px;
		font-size: 12px;
		padding: 6px 10px;
	}

	.mobile-table th, .mobile-table td {
		padding: 6px;
		font-size: 12px;
	}

	.mobile-daypicker {
		justify-content: space-between;
		width: 96%;
		padding: 0 10px;
	}

	.mobile-table {
		width: 100%;
	}

	.mobile-daypicker a {
		width: 20px;
		height: 20px;
		display: flex;
		justify-content: center;
		align-items: center;
		font-size: 14px;
	}
}
