body {
	font-family: 'Arial', sans-serif;
	background-color: #78ad2c;
	margin: 0;
	padding: 0;
}

.container {
	max-width: 1200px;
	text-align: center;
	margin: 100px auto;
	background-color: #fff;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
	overflow: auto;
}

h2 {
	color: #333;
	text-align: center;
	margin-bottom: 20px;
}
h1 {
	display: block;
	font-size: 20px;
	margin-block-start: 5px;
	margin-block-end: 5px;
	margin-inline-start: 0px;
	margin-inline-end: 0px;
	font-weight: bold;
}

form {
	display: flex;
	flex-direction: column;
}

input[type="text"],
input[type="password"],
input[type="email"],
select {
	padding: 10px;
	margin-bottom: 15px;
	border: 1px solid #ccc;
	border-radius: 4px;
	font-size: 16px;
}

input[type="submit"] {
	padding: 10px 15px;
	background-color: #007bff;
	border: none;
	border-radius: 4px;
	color: #fff;
	font-size: 16px;
	cursor: pointer;
	transition: background-color 0.3s;
}

input[type="submit"]:hover {
	background-color: #0056b3;
}

p.message {
	text-align: center;
	margin-top: 20px;
	color: #4CAF50;
}

.button {
	display: inline-block;
	padding: 10px 20px;
	margin: 1rem;
	font-size: 16px;
	text-align: center;
	cursor: pointer;
	text-decoration: none;
	background-color: #007bff;
	color: #ffffff;
	border: none;
	border-radius: 4px;
	transition: background-color 0.3s;
}

.button:hover {
	background-color: #0056b3;
}
*, *:before, *:after {
	box-sizing: border-box;
}

header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: #333;
	color: #fff;
	padding: 10px 0;
	text-align: center;
	height:120px;
}

footer {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: #333;
	color: #fff;
	padding: 10px 0;
	text-align: center;
}

.exit-button {
	position: absolute;
	top: 50px;
	right: 20px;
}

.exit-button a {
	background-color: #ff0000;
	color: #fff;
	padding: 5px 15px;
	border-radius: 4px;
	text-decoration: none;
	transition: background-color 0.3s;
}

.exit-button a:hover {
	background-color: #dd0000;
}
/* Tablo genel stilleri */
table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 20px;
	font-size: 16px;
	text-align: left;
}

/* Tablo başlığı stilini tanımla */
th {
	background-color: #f2f2f2;
	padding: 10px 15px;
	font-weight: bold;
	border-bottom: 2px solid #ccc;
}

/* Çift satırların arka plan rengini değiştir */
tr:nth-child(even) {
	background-color: #f9f9f9;
}

/* Hücrelerin içerisindeki verilerin stilini tanımla */
td {
	padding: 10px 15px;
	border-bottom: 1px solid #ddd;
}

/* Hover efekti ekleyelim */
tr:hover {
	background-color: #f5f5f5;
}
@media print {
	.no-print , .group-buttons , footer{
		display: none !important;
	}
	h1 {
		top: 100px;
		position: relative;
	}
}
/* Arama formu için stil */
.search-container {
	max-width: 300px;
	display: flex;
	justify-content: space-between;
	margin-bottom: 20px;
}

.search-container input[type="text"] {
	flex-grow: 1;
	padding: 10px;
	border-radius: 4px;
	border: 1px solid #ccc;
}

.search-container input[type="submit"] {
	padding: 10px 15px;
	background-color: #007bff;
	border: none;
	border-radius: 4px;
	color: #fff;
	cursor: pointer;
	transition: background-color 0.3s;
}

.search-container input[type="submit"]:hover {
	background-color: #0056b3;
}

.popup {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	z-index: 1000;
}

.popup-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #fff;
	padding: 20px;
	width: 400px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
img.logo {
	left: 0;
	position: absolute;
	height: 100px;
}
img.logo2 {
	height: 100px;
}

.group-buttons {
	margin: 5px 0;
}