:root {
	--body-bg-color: #fff;
	--button-bg-color: #00484b;
	--button-hover-bg-color: #002f31;
	--copy-status-color: #80deea;
}

* {
	box-sizing: border-box;
}

html, body {
	margin: 0;
	padding: 0;
	height: 100%;
	display: grid;
	place-items: center;
}

body {
	font-family: Arial, sans-serif;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	padding: 20px;
	background-color: var(--body-bg-color);
}


h1 {
	margin-top: 0;
	margin-bottom: 2rem;
	color: #000;
}

label {
	display: block;
	margin-bottom: 10px;
	font-weight: bold;
	color: #000000;
}

select {
	padding: 10px;
	width: 100%;
	margin-bottom: 20px;
	border: none;
	border-radius: 4px;
	background-color: #c5c5c5;
	color: #000;
	text-align-last: center;
	font-size: large;
}

select option {
	text-align: left;
	font-size: medium;
}

.main-container {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.container {
	position: relative;
	background-color: #ececec;
	padding: 3rem;
	border-radius: 8px;
	width: 100%;
	max-width: 30rem;
	text-align: center;
}


.button {
	display: inline-block;
	padding: 10px 20px;
	background-color: #171858;
	color: white;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	text-decoration: none;
	font-size: 16px;
	margin: 5px;
	transition: background-color 0.3s, transform 0.3s, color 0.3s;
}

.button:hover {
	background-color: var(--button-hover-bg-color);
}

.progress-container {
	display: flex;
	align-items: center;
	margin-top: 20px;
}

.progress-bar {
	width: 0%;
	height: 20px;
	background: linear-gradient(135deg, rgb(23 24 89) 0%, rgb(64 67 255) 100%);
	border-radius: 4px;
	transition: width 0.3s;
}

.progress-text {
	margin-left: 10px;
	font-weight: bold;
	color: #565656;
}

.key-container {
	margin-top: 20px;
	max-height: 400px;
	overflow-y: scroll;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.key-container::-webkit-scrollbar {
	width: 0;
	height: 0;
}

.key-container h2 {
	color: #000000;
}

.keys-list {
	text-align: left;
	display: flex;
	flex-direction: column;
	margin-top: 10px;
}

.key-item {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
	background-color: #f6f6f6;
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 4px;
	word-wrap: break-word;
}

.key-item input {
	flex-grow: 1;
	border: none;
	background: transparent;
	color: #000;
	font-size: 16px;
	overflow: hidden;
	text-overflow: ellipsis;
}

.key-number {
	display: inline-block;
	text-align: center;
	width: 28px;
	padding: 10px 10px;
	background-color: #2f307f;
	color: white;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-size: 16px;
	margin: 5px;
}

.key-item button {
	margin-left: 10px;
	background-color: #171859;
	border: none;
	padding: 10px 10px;
	border-radius: 4px;
	cursor: pointer;
	color: white;
	font-size: 14px;
	transition: background-color 0.3s, transform 0.3s, color 0.3s;
}

.key-item button:hover {
	background-color: var(--button-hover-bg-color);
}

.hidden {
	display: none;
}

.copy-status {
	margin-top: 10px;
	color: var(--copy-status-color);
	font-weight: bold;
}

.footer-button {
	margin-top: 20px;
	background-color: var(--button-bg-color);
	color: white;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	padding: 10px 20px;
	font-size: 16px;
	text-align: center;
}

.language-selector {
}

#languageSelect {
	background-color: #e4e4e4;
	color: #000;
	border-radius: 4px;
	padding: 5px;
	font-size: large;
}