* { box-sizing: border-box; }

body {
	margin: 0;
	background-color: #121212;
	color: #e0e0e0;
	font-family: -apple-system, Roboto, "Segoe UI", sans-serif;
}

.header {
	position: relative;
	background: linear-gradient(90deg, #0d2c4e, #0e6e6e);
	padding: 18px 16px;
	display: flex;
	align-items: center;
}

.header-title {
	color: #4fe3c1;
	font-size: 20px;
	font-weight: 500;
}

.content {
	padding: 20px 16px;
}

.field-label {
	display: block;
	color: #4fe3c1;
	font-size: 13px;
	margin-bottom: 6px;
}

.input-field {
	width: 100%;
	background: transparent;
	border: 1px solid #4fe3c1;
	border-radius: 6px;
	padding: 12px;
	color: #e0e0e0;
	font-size: 16px;
}

.input-field:focus {
	outline: none;
	border-color: #7dffe0;
}

.password-wrapper {
	position: relative;
}

.eye-btn {
	position: absolute;
	right: 8px;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	color: #4fe3c1;
	font-size: 18px;
	cursor: pointer;
}

.button-row {
	display: flex;
	gap: 12px;
	margin-top: 28px;
}

.btn {
	flex: 1;
	padding: 14px;
	border-radius: 6px;
	border: none;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
}

.btn-primary {
	background-color: #1e88e5;
	color: #fff;
}

.btn-primary:active {
	background-color: #1565c0;
}

.btn-disabled {
	background-color: #3a3a3a;
	color: #888;
	cursor: not-allowed;
}

.msg {
	margin-top: 16px;
	font-size: 14px;
	text-align: center;
}

.msg.error { color: #ff6b6b; }
.msg.success { color: #4fe3c1; }

.timestamp {
	text-align: right;
	color: #4fe3c1;
	font-size: 12px;
	margin-bottom: 12px;
}

.box {
	border: 1px solid #ffffff;
	border-radius: 8px;
	padding: 10px 14px;
	margin-bottom: 16px;
	text-align: center;
}

.box-label {
	color: #4fe3c1;
	font-size: 13px;
}

.box-value {
	font-size: 22px;
	margin-top: 4px;
}

.box-row {
	display: flex;
	gap: 12px;
}

.box.half {
	flex: 1;
}

.menu-btn {
	position: absolute;
	right: 12px;
	top: 14px;
	background: none;
	border: none;
	color: #4fe3c1;
	font-size: 24px;
	cursor: pointer;
}

.menu-dropdown {
	position: absolute;
	right: 12px;
	top: 48px;
	background: #1e1e1e;
	border: 1px solid #333;
	border-radius: 6px;
	overflow: hidden;
	z-index: 10;
	min-width: 180px;
}

.menu-dropdown.hidden {
	display: none;
}

.menu-item {
	padding: 12px 16px;
	font-size: 14px;
	cursor: pointer;
}

.menu-item:hover {
	background: #2a2a2a;
}


.back-btn {
	color: #4fe3c1;
	text-decoration: none;
	font-size: 22px;
	margin-right: 12px;
}

.date-row {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 16px;
}

.date-box {
	flex: 1;
	margin-bottom: 0;
}

.chk {
	width: 20px;
	height: 20px;
	accent-color: #1e88e5;
}

.button-row3 {
	display: flex;
	gap: 10px;
	justify-content: center;
	margin-top: 8px;
}

.btn-small {
	flex: 0 0 70px;
	padding: 10px;
	border-radius: 6px;
	border: none;
	background-color: #1e6e9e;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
}

.resultado {
	margin-top: 24px;
	font-family: 'Courier New', monospace;
}

.report-header {
	display: flex;
	justify-content: space-between;
	color: #4fe3c1;
	font-size: 15px;
	padding: 0 8px;
}

.report-sep {
	border-top: 1px dashed #555;
	margin: 6px 0;
}

.report-row {
	display: flex;
	justify-content: space-between;
	padding: 4px 8px;
	font-size: 15px;
}

.report-row.total {
	font-weight: 700;
	color: #4fe3c1;
}

