
@import 'bootstrap/dist/css/bootstrap.css';
@import 'primeicons/primeicons.css';

.fullscreen {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to bottom, #b73146, #eaaeb7);
}

.fullscreen .login-form{
    background-color: #ffffff;
}

.btn-orange{
    color: #ffffff;
    background-color: #b73146;
    border: none;
    transition: background-color 0.3s; 
}

.btn-orange:hover {
    background: linear-gradient(to right, #b73146, #eaaeb7); 
    color: #ffffff;
}

#dashboasd{ 
    font-family: Arial, sans-serif; 
    display: flex; 
    flex-direction: column; 
    height: 100vh;
}

header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #ffffff;
	color: #fff;
    height: 60px;
}

header .logo {
    display: block;
    width: 250px;
    height: 60px;
	font-size: 1.2rem;
	font-weight: bold;
    cursor: pointer;
    background-color: #b73146;
}

header .logo-mobile {
    display: none;
    width: 250px;
    height: 60px;
	font-size: 1.2rem;
	font-weight: bold;
    cursor: pointer;
    background-color: #fff;
    padding: 5px 20px;
}

header .menu-btn {
    margin: 1rem;
	font-size: 1.5rem;
	background: none;
	border: none;
	color: #000;
	cursor: pointer;
	display: none;
}

#dashboard-container {
	flex: 1;
	display: flex;
    height: calc(100vh - 60px);
}

aside {
	width: 250px;
	background: linear-gradient(to bottom, #b73146, #eaaeb7);
	color: #fff;
	padding: 1rem;
	transition: transform 0.3s ease;
}

aside ul li{
    list-style: none;
    margin: 10px 0;
}

aside a{
    color: #000;
    text-decoration: none;
    display: flex;
    align-items: center;
    text-decoration: none;
}

aside ul .list-divider{
    margin: 10;
}

main {
	flex: 1;
	padding: 1rem;
	background: #ecf0f1;
}

/* Mobile view */
@media (max-width: 768px) {
    header .logo {
        display: none;
    }

    header .logo-mobile {
        display: block;
    }

	aside {
		position: fixed;
		top: 0;
		left: 0;
		height: 100%;
		transform: translateX(-100%);
		z-index: 1000;
	}

	aside.active {
		transform: translateX(0);
	}

	header .menu-btn {
		display: block;
	}

	#dashboard-container {
		flex-direction: column;
	}
}