/* RESET */

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, Helvetica, sans-serif;
}

body{
background:#f4f6f9;
}

/* SIDEBAR */

.sidebar{
position:fixed;
left:0;
top:0;
width:240px;
height:100vh;
background:#0b1c2d;
color:white;
padding:20px;
}

.logo{
text-align:center;
margin-bottom:30px;
}

.logo img{
width:80px;
margin-bottom:10px;
}

.logo h3{
color:#d4af37;
font-size:16px;
}

.sidebar ul{
list-style:none;
}

.sidebar ul li{
margin:15px 0;
}

.sidebar ul li a{
color:white;
text-decoration:none;
font-size:15px;
display:block;
padding:8px;
border-radius:6px;
transition:0.3s;
}

.sidebar ul li a:hover{
background:#1d3557;
color:#f7c948;
}

/* CONTENT */

.content{
margin-left:260px;
padding:40px;
}

h1{
color:#0d2b52;
margin-bottom:25px;
}

/* TABLE */

table{
width:100%;
border-collapse:collapse;
background:white;
box-shadow:0 2px 8px rgba(0,0,0,0.1);
margin-top:20px;
}

table th{
background:#2c3e50;
color:white;
padding:12px;
text-align:left;
}

table td{
padding:10px;
border-bottom:1px solid #ddd;
}

tr:hover{
background:#f2f2f2;
}

/* BUTTONS */

.btn{
display:inline-block;
padding:8px 12px;
border-radius:5px;
text-decoration:none;
font-size:14px;
color:white;
}

.btn-primary{
background:#3498db;
}

.btn-view{
background:#2980b9;
color:white;
padding:5px 8px;
text-decoration:none;
border-radius:4px;
}

.btn-pdf{
background:#e74c3c;
color:white;
padding:5px 8px;
text-decoration:none;
border-radius:4px;
}

.btn-delete{
background:#c0392b;
color:white;
border:none;
padding:5px 8px;
border-radius:4px;
cursor:pointer;
}

/* BADGES */

.badge{
padding:4px 8px;
border-radius:4px;
color:white;
font-size:12px;
}

.badge-success{
background:#27ae60;
}

.badge-danger{
background:#e74c3c;
}

.badge-warning{
background:#f39c12;
}

/* FORM */

input{
width:100%;
padding:10px;
margin-bottom:10px;
border:1px solid #ccc;
border-radius:6px;
}

button{
background:#007bff;
color:white;
border:none;
padding:10px 15px;
border-radius:6px;
cursor:pointer;
}

button:hover{
background:#0056b3;
}