/*
Theme Name: YMLN
Theme URI: https://example.com
Author: Your Name
Author URI: https://example.com
Description: A simple, multi-purpose WordPress theme for businesses.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: onesite
*/

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

.header {
	background-color: #1E66A8;
	color: white;
	padding: 20px;
	text-align: center;
	font-size: 12px;
}

.header h2 {
	font-size: 20px;
	margin: 0;
}

.container {
	max-width: 600px;
	margin: 0 auto;
	background-color: #f0eff4;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	height: 100vh;
}

.text {
	font-size: 18px;
	color: #333;
	margin: 30px 15px;
}

.input-section {
	display: flex;
	padding: 10px 15px;
	background: #ffffff;
	align-items: center;
}

.input-section label {
	font-size: 14px;
	width: 160px;
}

.input-section input[type="email"] {
	width: 100%;
	padding: 10px;
	font-size: 13px;
	border: 1px solid #ccc;
	border-radius: 5px;
}

.submit-button {
	display: block;
	width: 96%;
	padding: 12px;
	background-color: #28a745;
	color: white;
	font-size: 18px;
	margin: 10px auto;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}

.submit-button:hover {
	background-color: #218838;
}

.footer {
	display: flex;
	justify-content: space-around;
	margin-top: 30px;
}

.footer .qr-code {
	text-align: center;
}

.footer img {
	width: 100px;
	height: 100px;
}

.footer h3 {
	font-size: 16px;
	margin-top: 10px;
}

.email {
	font-size: 20px;
	font-weight: bold;
	margin: 20px 15px;
}

.loading {
	text-align: center;
	font-size: 18px;
	color: #28a745;
	display: none;
}

.table {
	width: 100%;
	border-collapse: collapse;
	margin: 20px 0;
	font-family: Arial, sans-serif;
	background-color: #f9f9f9;
}


.table th,
.table td {
	padding: 12px 15px;
	text-align: left;
	vertical-align: middle;
}

.table td,
.table th {
	border: 1px solid #ddd;
}

.table tr:hover {
	background-color: #f1f1f1;
}

.table td strong {
	color: #2c3e50;
	font-weight: bold;
}

.table tbody tr {
	background-color: #fff;
	transition: background-color 0.3s ease;
}

.table tbody tr:hover {
	background-color: #ecf0f1;
}

.table td:first-child {
	font-weight: bold;
	color: #3498db;
}

.table td,
.table th {
	border-width: 1px;
}