/* FONT */
body{
font-family: 'Segoe UI', sans-serif;
transition: 0.3s;
}

/* SIDEBAR */
.sidebar{
position:fixed;
left:0;
top:0;
width:230px;
height:100%;
background:#0d6efd;
color:white;
padding-top:20px;
transition:0.3s;
}

.sidebar h3{
text-align:center;
margin-bottom:30px;
}

.sidebar a{
display:block;
color:white;
padding:15px;
text-decoration:none;
transition:0.3s;
}

.sidebar a:hover{
background:white;
color:#0d6efd;
padding-left:25px;
}

/* CONTENT */
.content{
margin-left:240px;
padding:20px;
}

/* CARD */
.card{
border-radius:15px;
box-shadow:0px 5px 15px rgba(0,0,0,0.2);
}

/* TOMBOL ANIMASI */
.btn{
border-radius:10px;
transition:0.3s;
}

.btn:hover{
transform:scale(1.05);
box-shadow:0px 5px 15px rgba(0,0,0,0.3);
}

/* DARK MODE */
.dark{
background:#121212;
color:white;
}

.dark .card{
background:#1e1e1e;
color:white;
}

.dark .sidebar{
background:#222;
}

.dark a{
color:white;
}

/* TOGGLE DARK */
.toggle{
position:fixed;
right:20px;
top:20px;
cursor:pointer;
padding:10px 15px;
border-radius:10px;
background:#0d6efd;
color:white;
}