* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	min-height: 100vh;
	padding: 20px;
}

.body-center {
	display: flex;
	align-items: center;
	justify-content: center;
}

.page-title,.page-title-margin {
	color: #333;
	font-size: 28px;
	font-weight: bold;
	text-align: center;
}
.page-title-margin {
	margin-bottom: 20px;
}

h2 {
	margin-bottom: 20px;
	color: #333;
}

input {
	width: 100%;
	padding: 12px;
	border: 1px solid #ddd;
	border-radius: 5px;
	font-size: 14px;
	transition: border-color 0.3s;
}
input:focus {
	outline: none;
	border-color: #667eea;
}

label {
	display: block;
	margin-bottom: 5px;
	color: #555;
	font-weight: 500;
}

.logout-btn {
	padding: 10px 20px;
	background: #e74c3c;
	color: white;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-weight: 600;
	transition: background 0.3s;
}
.logout-btn:hover {
	background: #c0392b;
}

  /* Style inline code */
  code {
    font-family: "consola", monospace;
    font-size: 14px;
    /*background-color: #f5f5f5;*/
    padding: 2px 4px;
    border-radius: 4px;
    color: #006400;
    font-weight: bold;
  }

  /* Style fenced code blocks */
  pre code {
    font-size: 14px;
    background-color: #272822;
    color: #f8f8f2;
    display: block;
    padding: 10px;
    overflow-x: auto;
    border-radius: 6px;
    font-weight: normal;
  }
