.trnLeftMenu
{
	width: 250px;
	height: calc(100% - 60px);
	position: fixed;
	left: 0;
	top: 60px;
	display: flex;
	flex-direction: column;
	background-color: #006165;
	z-index: 100;
	padding-left:15px;
	border-top: 4px solid #006165;
}

.trnLeftMenu .trnLeftMenuContent
{
	flex: 1;
	overflow-y: auto;
}

.trnLeftMenuItem
{
	width: 100%;
	height: 60px;
	padding: 0;
	font-weight: bold;
	color: #000;
	cursor: pointer;
	box-sizing: border-box;
	border-bottom: 4px solid #006165;
}

.trnLeftMenuItem:hover button
{
	color:#186F73;
	background: #FFF;
}

.trnLeftMenuItem:last-child button {
    background-color: #4CB9AB;
    color: #2E2D2C;
}

.trnLeftMenuItem button {
    width: 100%;
    height: 100%;
	padding-right:20px;
    display: flex;
    align-items: center;
    justify-content: right;
    font-weight: bold;
    font-size: 16px;
    color: #FFF;
    background-color: #186F73;
    border: none;
    border-radius: 0; /* 🔥 Tam kenarlara otursun istiyorsan radius'u kaldır */
    cursor: pointer;
    box-sizing: border-box; /* ✅ border dahil et */

	border-radius:20px 0 0 20px;
	-moz-border-radius:20px 0 0 20px;
	-webkit-border-radius:20px 0 0 20px;
}


.trnLeftMenuBottom .trnLeftMenuItem:first-child button {
    background-color: #FFF;
    color: #2E2D2C;
    border: 2px solid #2E2D2C; /* istersen çerçeve ekleyebilirsin */
}

.trnLeftMenuBottom .trnLeftMenuItem button
{	
    background-color: #B4373E;
    color: #FFF;
}

.trnLeftMenuBottom .trnLeftMenuItem .icon
{	
    margin-left:10px;
    font-weight: bold;
    font-size: 16px;
}