.smm-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    font-size: 2em;
    color: #fff;
    background: #204ecf;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    z-index: 9999;
}

.smm-sidebar {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background-color: #204ecf;
    color: white;
    padding: 20px;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.2);
    z-index: 9998;
    transition: right 0.3s ease;
}

.smm-sidebar.open {
    right: 0;
}

.smm-sidebar .smm-close {
    font-size: 1.5em;
    cursor: pointer;
    text-align: right;
    margin-bottom: 20px;
}

.smm-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.smm-menu li {
    margin-bottom: 15px;
}

.smm-menu li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
}

.smm-menu li a:hover {
    text-decoration: underline;
}

.smm-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9997;
    display: none;
}
