

{
    margin: 0;
    padding: 0;
    /* box-sizing: border-box;
    font-family: 'Arial', sans-serif; */
}
body {
    /* display: flex; */
    /* background-color: #f5f5f5; */
}
/* Sidebar Menu */
.sidebar {
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #3CB371, #2E8B57);
    color: white;
    /* border-radius: 10px; */
    border-radius: 20px 0 0 0;
    padding-top: 20px;
    /* position: fixed; */
    left: 0;
    top: 0;
    box-shadow: 3px 0 10px rgba(0, 0, 0, 0.2);
}
.sidebar ul {
    list-style: none;
    padding: 0;
}
.sidebar ul li {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    /* display: flex; */
    align-items: center;
    transition: background 0.3s;
}
.sidebar ul li i {
    margin-right: 10px;
}
.sidebar ul li:hover {
    background: rgba(255, 255, 255, 0.2);
}
.sidebar ul li a {
    color: white;
    text-decoration: none;
    flex: 1;
}
/* Dropdown */
.dropdown {
    display: none;
    background: rgba(255, 255, 255, 0.1);
    padding-left: 20px;
}
.dropdown li {
    padding: 10px;
    transition: background 0.3s;
}
.dropdown li:hover {
    background: rgba(255, 255, 255, 0.3);
}
/* Content Area */
.content {
    margin-left: 0px;
    padding: 40px;
    flex: 1;
    background: white;
    min-height: 100%;
    box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.1);
}
/* Loading Effect */
.loading {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    color: #3CB371;
}