body {
    font-family: Arial, sans-serif;
}

#admin-wrapper {
    display: flex;
    position: relative;
}

#admin-content {
    flex: 1;
    padding: 20px;
}

#user-details {
    width: 300px;
    position: fixed;
    top: 0;
    right: -300px;
    height: 100%;
    background-color: #f8f8f8;
    box-shadow: -2px 0 5px rgba(0,0,0,0.1);
    padding: 20px;
    transition: right 0.3s ease-in-out;
    overflow-y: auto;
}

#user-details h3 {
    margin-top: 0;
}

#user-details.show {
    right: 0;
}

button {
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    cursor: pointer;
}

button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

#pagination {
    margin-top: 20px;
}
