body {
	margin: 0;
	font-family: "Ubuntu", sans-serif;
	background: #0e121b;
	color: #fff;
}

/* HEADER */
.forum-header {
	background: linear-gradient(180deg, #1b2a46 0%, #12203a 100%);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
	padding: 15px 40px;
}

.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	display: flex;
	align-items: center;
	gap: 10px;
}

.logo img {
	height: 50px;
}

.logo span {
	font-size: 1.3rem;
	font-weight: 700;
	color: #4da3ff;
}

.nav-links a {
	color: #cce3ff;
	text-decoration: none;
	margin-left: 25px;
	font-weight: 500;
	transition: color 0.3s ease;
}

.nav-links a:hover {
	color: #4da3ff;
}

/* LOGIN BOX */
.login-section {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 80vh;
}

.login-box {
	background: #192a4a;
	border: 1px solid #2c4f87;
	border-radius: 10px;
	padding: 30px;
	width: 350px;
	text-align: center;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
}

.login-box h2 {
	color: #4da3ff;
	margin-bottom: 20px;
}

.login-box label {
	display: block;
	text-align: left;
	margin-top: 10px;
	font-weight: 500;
}

.login-box input {
	width: 100%;
	padding: 10px;
	margin-top: 5px;
	background: #101a30;
	border: 1px solid #2c4f87;
	border-radius: 5px;
	color: #fff;
}

.login-box input:focus {
	border-color: #4da3ff;
	outline: none;
}

button {
	margin-top: 20px;
	width: 100%;
	padding: 10px;
	background: #4da3ff;
	border: none;
	border-radius: 5px;
	color: white;
	font-weight: bold;
	transition: background 0.3s ease;
	cursor: pointer;
}

button:hover {
	background: #3a87d9;
}

.forgot {
	display: inline-block;
	margin-top: 15px;
	color: #aacfff;
	text-decoration: none;
}

.forgot:hover {
	color: #4da3ff;
}

/* FOOTER */
.forum-footer {
	background: #101a30;
	text-align: center;
	padding: 25px 10px;
	color: #b5cbe8;
	font-size: 0.9rem;
}

.forum-footer a {
	color: #4da3ff;
	text-decoration: none;
}

.forum-footer a:hover {
	text-decoration: underline;
}

/* DASHBOARD PANEL */
.dashboard-section {
	display: flex;
	justify-content: center;
	margin: 20px auto;
	width: 90%;
}

.dashboard-container {
	display: flex;
	gap: 20px;
	width: 100%;
}

/* Bal oldali panel - felhasználói adatok */
.dashboard-left {
	background: #192a4a;
	border: 1px solid #2c4f87;
	border-radius: 10px;
	padding: 20px;
	flex: 1;
}

.dashboard-left h2 {
	color: #4da3ff;
	margin-bottom: 15px;
}

.user-info li {
	margin-bottom: 8px;
	font-weight: 500;
}

/* Jobb oldali panel - fórum topik stílusú log */
.dashboard-right {
	background: #192a4a;
	border: 1px solid #2c4f87;
	border-radius: 10px;
	padding: 20px;
	flex: 2;
	position: relative;
}

.dashboard-right h2 {
	color: #4da3ff;
	margin-bottom: 15px;
}

/* Névátválás gomb a jobb felső sarokban */
.rename-button {
	position: absolute;
	top: 20px;
	right: 20px;
	background: #4da3ff;
	color: #fff;
	border: none;
	border-radius: 5px;
	padding: 6px 12px;
	cursor: pointer;
	font-weight: bold;
	transition: background 0.3s ease;
}

.rename-button:hover {
	background: #3a87d9;
}

/* Fórum topik stílus */
.forum-topics .topic {
	background: #101a30;
	border: 1px solid #2c4f87;
	padding: 12px;
	margin-bottom: 10px;
	border-radius: 6px;
}

.topic-type {
	font-weight: bold;
	color: #4da3ff;
}

.topic-date {
	float: right;
	color: #aacfff;
}

.topic-reason {
	margin-top: 5px;
}