.sidebar {
    width: 18%;
    background: #fff;
    border-right: 1px solid #ddd;
    height: 100vh;
    padding: 1%;
    position: fixed;
    overflow-y: auto;
    transition: all 0.3s;
}

.sidebar a {
    color: #000;
    text-decoration: none;
    display: block;
    padding: 8px;
    border-bottom: 1px solid #eee;
    transition: 0.2s;
    font-weight: 500;
}

.a-active {
    background: #9c27b0;
    color: #fff !important;
    border-radius: 8px;
}

.sidebar a:hover:not(.a-active) {
    background: #e8f0ff;
    border-radius: 8px;
}
.profile-logo{
    width: 120px;
    height: 120px;
    border-radius: 100%;
}
.content {
    margin-left: 20%;
    padding: 30px;
    transition: margin 0.3s;
}
table {
    width:100%;
    border-collapse:collapse;
    margin-top:10px;
    box-shadow: 0px 10px 12px rgba(0, 0, 0, 0.08);
    background: #fff;
}

thead {
    background: linear-gradient(135deg, #9C27B0, #E91E63);
}

th {
    padding:14px;
    text-align:left;
    font-size:15px;
    color:white;
    text-transform:uppercase;
}

td {
    padding:14px;
    border-bottom:1px solid #eee;
    color:#333;
    font-size:14px;
}

tr:hover {
    background:#fafafa;
}

thead tr:hover {
    background: inherit !important;
}

.status {
    padding:6px 12px;
    border-radius:20px;
    font-size:13px;
    color:white;
    font-weight:500;
}

.pending { background:#f0ad4e; }
.accepted { background:#28a745; }
.rejected { background:#dc3545; }

.btn {
    padding:8px 14px;
    border-radius:6px;
    color:white;
    text-decoration:none;
    font-size:13px;
    margin-right:5px;
    display:inline-block;
}

.accept-btn { background:#28a745; }
.reject-btn { background:#dc3545; }