/* ssf-user-profile.css */
.ssf-user-profile {
    max-width: 800px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
}

.ssf-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
}

.ssf-user-name {
    font-size: 18px;
    font-weight: bold;
}

.ssf-logout a {
    color: #0073aa;
    text-decoration: none;
}

.ssf-tabs {
    margin-top: 20px;
}

.ssf-tab-menu {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    margin-bottom: 10px;
    padding-left: 0;
}

.ssf-tab-menu li {
    cursor: pointer;
    padding: 10px 20px;
    background: #f5f5f5;
    border: 1px solid #ccc;
    border-bottom: none;
}

.ssf-tab-menu li.active {
    background: #fff;
    font-weight: bold;
}

.ssf-tab-content {
    display: none;
    border: 1px solid #ccc;
    padding: 15px;
    background: #fff;
}

.ssf-tab-content.active {
    display: block;
}

.ssf-slide {
    display: none;
    margin-bottom: 20px;
    padding: 10px;
    background: #f9f9f9;
    border-left: 5px solid #0073aa;
}

.ssf-slider-controls {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.ssf-slider-controls button {
    padding: 6px 12px;
    background: #0073aa;
    color: #fff;
    border: none;
    cursor: pointer;
}

.ssf-slider-controls button:hover {
    background: #005f8d;
}

.ssf-message-type-toggle button {
    margin-right: 10px;
    padding: 5px 10px;
    cursor: pointer;
}
.ssf-message-type-toggle button.active {
    background-color: #0073aa;
    color: white;
}

