.ttm-dashboard{
	display:flex;
	min-height:100vh;
	background:var(--ttm-greycolor);;
}

/* Sidebar */

.ttm-sidebar{
	width:260px;
	background:linear-gradient(180deg,#E8E5FD,#F8D3F6);
	color:var(--ttm-blackishcolor);
	padding:30px;
}

.ttm-logo{
	font-size:28px;
	font-weight:700;
	margin-bottom:40px;
}

.ttm-logo a{
	color:var(--ttm-blackishcolor);;
	text-decoration:none;
}

.ttm-sidebar ul{
	list-style:none;
	padding:0;
	margin:0;
}

.ttm-sidebar li{
	margin-bottom:10px;
}

.ttm-sidebar a{
	display:block;
	padding:14px 18px;
	border-radius:10px;
	color:var(--ttm-secondarycolor);
	text-decoration:none;
}

.ttm-sidebar li.active a{
	background:rgba(255,255,255,0.58);
}

/* Content */

.ttm-dashboard-content{
	flex:1;
	padding:30px;
}

.ttm-dashboard-header{
	display:flex;
	justify-content:space-between;
	align-items:center;
	background:var(--ttm-whitecolor);
	padding:20px 25px;
	border-radius:15px;
	margin-bottom:30px;
}

.ttm-user{
	display:flex;
	align-items:center;
	gap:12px;
}

.ttm-card{
	background:var(--ttm-whitecolor);
	border-radius:15px;
	padding:30px;
}
/** **/
.ttm-license-table{

background:#fff;
border:1px solid #eee;
border-radius:12px;
overflow:hidden;
margin-top:40px;

}

.ttm-license-heading,
.ttm-license-row{

display:grid;
grid-template-columns:1fr 1fr;
padding:20px;
border-bottom:1px solid #eee;
align-items:center;

}

.ttm-license-left{

display:flex;
gap:20px;
align-items:center;

}

.ttm-license-left img{

width:70px;
height:70px;
border-radius:8px;

}

.ttm-license-right input{

width:100%;
padding:12px;
margin-bottom:12px;

}

.ttm-license-right a{

display:inline-block;
padding:8px 16px;
background:#7c3aed;
color:#fff;
border-radius:6px;

}
.ttm-pagination{
    margin-top:40px;
    display:flex;
    gap:10px;
}

.ttm-pagination a{
    width:38px;
    height:38px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid #ddd;
    text-decoration:none;
    border-radius:6px;
    color:#222;
}

.ttm-pagination a.active{
    background:#2271b1;
    color:#fff;
    border-color:#2271b1;
}