.modal.hidden {
	display: none !important;
}

.hidden {
	display: none !important;
}

.modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2000;
	box-sizing: border-box;
}

.modal-content {
	background: #1a1a1a;
	border: 2px solid #4CAF50;
	border-radius: 12px;
	padding: 2em;
	width: 90%;
	max-width: 400px;
	position: relative;
	color: white;
	box-shadow: 0 8px 24px rgba(0,0,0,0.8);
}

.close-btn {
	position: absolute;
	top: 10px;
	right: 15px;
	font-size: 1.5em;
	cursor: pointer;
	color: #ccc;
}

.tabs {
	display: flex;
	justify-content: space-around;
	margin-bottom: 1em;
}

.tabs button {
	background: none;
	border: none;
	color: #ccc;
	font-weight: bold;
	font-size: 1em;
	cursor: pointer;
	padding: 0.5em;
	border-bottom: 2px solid transparent;
	transition: all 0.3s ease;
}

.tabs button.active {
	color: #4CAF50;
	border-color: #4CAF50;
}

.tabs button:hover {
	color: #66bb6a;
}

.form-section {
	display: flex;
	flex-direction: column;
	gap: 1em;
	margin-top: 1.5em;
}

.form-section input {
	padding: 0.8em;
	border: 1px solid #4CAF50;
	border-radius: 6px;
	background: #2c2c2c;
	color: white;
}

.submit-btn,
.google-btn {
	padding: 0.8em;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	color: white;
	font-weight: bold;
	margin-top: 0.5em;
}

.submit-btn {
	background-color: #4CAF50;
}

.google-btn {
	background-color: #db4437;
	margin-bottom: 1em;
}

.google-btn:hover {
	background-color: #c23321;
}

.date-selects {
	display: flex;
	gap: 0.5em;
	flex-wrap: wrap;
}

.date-selects select {
	flex: 1;
	padding: 0.8em;
	border: 1px solid #4CAF50;
	border-radius: 6px;
	background-color: #2c2c2c;
	color: white;
	font-size: 1em;
}

.date-selects select:focus {
	outline: none;
	border-color: #66bb6a;
	box-shadow: 0 0 5px rgba(76, 175, 80, 0.5);
}
