﻿body {
	overflow-x: hidden;
}

/* --- Layout --- */
.sidebar {
	flex: 0 0 70px;
	background: #222;
	color: #f8f9fa;
	height: 100dvh; /* розтягнути на весь екран */
	overflow-y: auto; /* власний вертикальний скрол */
	overflow-x: hidden;
}

	.sidebar a {
		color: #fff;
		text-decoration: none;
		display: block;
		padding: 12px;
	}

		.sidebar a:hover {
			background: #444;
		}

	.sidebar .btn-link {
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
		border: none;
		background: none;
		color: #f8f9fa;
		font-size: 1.5rem;
		text-decoration: none;
		margin: 10px 0px;
	}

		.sidebar .btn-link:focus, .sidebar .btn-link:hover {
			background: #343a40;
			color: #fff;
			text-decoration: none;
		}

	.sidebar svg {
		width: 28px;
		height: 28px;
		display: block;
	}

.btn-square {
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: none;
	border: none;
	border-radius: 0.5rem;
	transition: background 0.2s, color 0.2s;
	margin: 5px auto;
}

	.btn-square:focus, .btn-square:hover {
		background: #343a40;
		color: #fff;
		outline: none;
	}

	.btn-square.active, .btn-square:active {
		background: #495057;
		color: #fff;
	}

.container-my {
	flex: 1 1 auto;
	min-width: 0; /* критично, щоб широкі елементи не "проштовхували" сторінку */
	margin: 5px;
	min-width: 0;
}

.btn-square,
.btn-link {
	color: #fff; /* робить currentColor білим */
}

	.btn-square svg,
	.btn-link svg {
		width: 28px;
		height: 28px;
	}