*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Inter',sans-serif;
}

body{
background:#f6f7fb;
color:#1f2937;
}

/* SIDEBAR */

.sidebar{
width:250px;
height:100vh;
background:#ffffff;
position:fixed;
left:0;
top:0;
padding:25px 20px;
border-right:1px solid #ececec;
}

.logo-area{
margin-bottom:30px;
}

.logo-area h3{
font-weight:700;
color:#7c3aed;
}

.sidebar ul{
list-style:none;
padding:0;
}

.sidebar li{
margin-bottom:10px;
}

.sidebar a{
display:flex;
align-items:center;
gap:10px;
padding:12px 15px;
border-radius:12px;
text-decoration:none;
color:#374151;
font-weight:500;
transition:.2s;
}

.sidebar a:hover{
background:#ede9fe;
color:#7c3aed;
}

/* MAIN */

.main-content{
margin-left:250px;
padding:30px;
min-height:100vh;
}

/* TOPBAR */

.topbar{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:30px;
}

/* DASHBOARD */

.card{
border:none;
border-radius:18px;
background:white;
box-shadow:
0 10px 25px rgba(0,0,0,.05);
}

.card h6{
font-size:14px;
color:#6b7280;
margin-bottom:10px;
}

.card h2{
font-weight:700;
color:#111827;
}

/* LOGIN */

.login-body{
background:
linear-gradient(
135deg,
#7c3aed,
#ec4899
);
}

.login-card{
width:420px;
background:white;
padding:35px;
border-radius:25px;
box-shadow:
0 25px 60px rgba(0,0,0,.15);
}

.form-control{
height:48px;
border-radius:12px;
border:1px solid #ddd;
}

.btn-dark{
background:#7c3aed;
border:none;
border-radius:12px;
height:48px;
font-weight:600;
}

.btn-dark:hover{
background:#6d28d9;
}

.btn-primary{
background:#7c3aed;
border:none;
border-radius:12px;
}

.btn-primary:hover{
background:#6d28d9;
}

/* TABLES */

.table-card{
background:white;
padding:25px;
border-radius:20px;
box-shadow:
0 10px 25px rgba(0,0,0,.05);
}

.table{
margin-bottom:0;
}

/* FORMS */

.form-card{
background:white;
padding:30px;
border-radius:20px;
box-shadow:
0 10px 25px rgba(0,0,0,.05);
}
/* AGENDA PREMIUM */

.fc{
font-family:'Inter',sans-serif;
}

.fc-toolbar-title{
font-size:22px;
font-weight:700;
color:#111827;
}

.fc-button{
background:#7c3aed !important;
border:none !important;
border-radius:12px !important;
padding:8px 14px !important;
font-weight:600 !important;
}

.fc-button:hover{
background:#6d28d9 !important;
}

.fc-timegrid-event{
border:none !important;
border-radius:16px !important;
padding:6px !important;
box-shadow:
0 10px 20px rgba(0,0,0,.12);
cursor:pointer;
transition:.2s;
overflow:hidden;
}

.fc-timegrid-event:hover{
transform:translateY(-2px);
box-shadow:
0 14px 30px rgba(0,0,0,.18);
}

.fc-event-title{
font-weight:700;
font-size:13px;
}

.fc-event-time{
font-size:12px;
opacity:.9;
}

.fc-theme-standard td,
.fc-theme-standard th{
border-color:#ececec;
}

.fc-scrollgrid{
border-radius:20px;
overflow:hidden;
background:white;
}