/* SCDev Follow System Styles */

.scdev-follow-wrapper {
    display: inline;
}

.scdev-follow-main {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.scdev-follow-btn {
    padding: 8px 20px;
    border: 1px solid #0084ff;
    background: #0084ff;
    color: white;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s;
}

.scdev-follow-btn:hover {
    background: #0073e6;
    border-color: #0073e6;
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0, 132, 255, 0.3);
}

.scdev-follow-btn.following {
    background: transparent;
    color: #666;
    border-color: #ddd;
}

.scdev-follow-btn.following:hover {
    background: #f5f5f5;
    border-color: #ccc;
    color: #333;
    box-shadow: none;
}

.scdev-follow-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.scdev-follow-name-btn .scdev-follow-btn {
    font-size: 0.8em;
    line-height: 1;
}

.scdev-follower-count {
    font-size: inherit;
    color: inherit;
}

.scdev-follow-actions {
    display: inline-flex;
    gap: 5px;
    margin-left: 5px;
}

.scdev-mute-btn,
.scdev-block-btn {
    padding: 0;
    border: none;
    background: none;
    font-size: 14px;
    cursor: pointer;
    opacity: 0.6;
}

.scdev-mute-btn:hover,
.scdev-block-btn:hover {
    opacity: 1;
}

.scdev-mute-btn.muted {
    opacity: 1;
}

.scdev-block-btn.blocked {
    opacity: 1;
    color: #dc3545;
}

.scdev-mute-btn:disabled,
.scdev-block-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Users List */
.scdev-users-list {
    max-width: 800px;
    margin: 20px 0;
}

.scdev-users-list h3 {
    margin: 0 0 15px 0;
    font-size: 20px;
    text-align: center;
}

.scdev-all-users-banner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 0 20px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.scdev-all-users-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
    color: #fff;
}

.scdev-all-users-site-name,
.scdev-all-users-page-title {
    margin: 0;
    font-size: 32px !important;
    line-height: 1.2;
    font-family: inherit;
    text-shadow: 0 8px 16px rgba(0, 0, 0, 0.8), 0 4px 8px rgba(0, 0, 0, 0.6), 0 2px 4px rgba(0, 0, 0, 0.4);
}

.scdev-all-users-site-name {
    font-weight: 700;
}

.scdev-all-users-page-title {
    font-weight: 600;
}

.scdev-search-wrapper {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.scdev-user-search {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
}

.scdev-user-search:focus {
    border-color: #0084ff;
}

.scdev-search-btn {
    padding: 10px 20px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s;
}

.scdev-search-btn:hover {
    background: #f5f5f5;
    border-color: #0084ff;
}

.scdev-users-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.scdev-user-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    margin-bottom: 10px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.2s;
}

.scdev-user-card:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.scdev-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.scdev-user-info img {
    border-radius: 50%;
}

.scdev-user-details {
    display: flex;
    flex-direction: column;
}

.scdev-user-details strong {
    font-size: 15px;
    color: #333;
}

.scdev-user-login {
    font-size: 13px;
    color: #666;
}

.scdev-user-actions {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.scdev-user-actions .scdev-block-btn {
    padding: 6px 12px;
    border: 1px solid #dc3545;
    background: white;
    color: #dc3545;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    opacity: 1;
}

.scdev-user-actions .scdev-block-btn:hover {
    background: #dc3545;
    color: white;
}

.scdev-user-actions .scdev-block-btn.blocked {
    background: #dc3545;
    color: white;
    border-color: #dc3545;
}

.scdev-empty {
    padding: 40px;
    text-align: center;
    background: #f9f9f9;
    border-radius: 8px;
    color: #666;
}

#scdev-follows-modal.scdev-follows-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

#scdev-follows-modal.scdev-follows-modal.is-open {
    display: flex;
}

#scdev-follows-modal .scdev-follows-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.48);
}

#scdev-follows-modal .scdev-follows-modal-box {
    position: relative;
    z-index: 1;
    width: min(430px, 94vw);
    max-height: 82vh;
    overflow: hidden;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

#scdev-follows-modal .scdev-follows-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border-bottom: 1px solid #e5e5e5;
}

#scdev-follows-modal .scdev-follows-modal-header h3 {
    margin: 0;
    font-size: 18px;
}

#scdev-follows-modal .scdev-follows-modal-close {
    border: 0;
    background: transparent;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

#scdev-follows-modal .scdev-follows-modal-body {
    max-height: calc(82vh - 58px);
    overflow-y: auto;
    padding: 16px;
}

#scdev-follows-modal .scdev-follows-modal-loading {
    color: #777;
}

.scdev-follow-login {
    padding: 20px;
    text-align: center;
}

.scdev-btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
}

.scdev-btn-primary {
    background: #0084ff;
    color: white;
}

.scdev-btn-primary:hover {
    background: #0073e6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .scdev-all-users-banner {
        border-radius: 6px;
    }

    .scdev-all-users-banner-content {
        gap: 8px;
        flex-wrap: wrap;
    }

    .scdev-all-users-site-name,
    .scdev-all-users-page-title {
        font-size: 26px !important;
    }

    .scdev-user-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .scdev-user-actions {
        width: 100%;
    }
    
    .scdev-follow-wrapper {
        display: block;
        margin-top: 10px;
    }
}


/* User Profile */
.scdev-user-profile {
    max-width: 800px;
    margin: 20px auto;
}

.scdev-profile-header {
    display: flex;
    gap: 30px;
    padding: 30px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 30px;
}

.scdev-profile-avatar img {
    border-radius: 50%;
    border: 3px solid #0084ff;
}

.scdev-profile-info {
    flex: 1;
}

.scdev-profile-info h2 {
    margin: 0 0 5px 0;
    font-size: 28px;
}

.scdev-profile-username {
    color: #666;
    margin: 0 0 15px 0;
}

.scdev-profile-stats {
    display: flex;
    gap: 20px;
    margin: 15px 0;
    font-size: 14px;
}

.scdev-profile-stats span {
    color: #666;
}

.scdev-profile-stats strong {
    color: #333;
    font-size: 16px;
}

.scdev-profile-actions {
    margin-top: 20px;
}

.scdev-profile-posts h3 {
    margin-bottom: 20px;
    font-size: 22px;
}

.scdev-posts-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.scdev-post-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.2s;
}

.scdev-post-item:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.scdev-post-thumbnail {
    flex-shrink: 0 !important;
    width: 80px !important;
    height: 80px !important;
    min-width: 80px !important;
    min-height: 80px !important;
    max-width: 80px !important;
    max-height: 80px !important;
    overflow: hidden !important;
    border-radius: 6px !important;
}

.scdev-post-thumbnail img {
    width: 80px !important;
    height: 80px !important;
    min-width: 80px !important;
    min-height: 80px !important;
    max-width: 80px !important;
    max-height: 80px !important;
    object-fit: cover !important;
    border-radius: 6px !important;
    display: block !important;
}

.scdev-post-content {
    flex: 1;
    min-width: 0;
}

.scdev-post-item h4 {
    margin: 0 0 8px 0;
    font-size: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.scdev-post-item h4 a {
    color: #333;
    text-decoration: none;
}

.scdev-post-item h4 a:hover {
    color: #0084ff;
}

.scdev-post-meta {
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
}

.scdev-post-excerpt {
    color: #666;
    line-height: 1.6;
    margin: 10px 0 0 0;
}

.scdev-empty-posts {
    padding: 40px;
    text-align: center;
    background: #f9f9f9;
    border-radius: 8px;
    color: #666;
}

/* Mobile */
@media (max-width: 768px) {
    .scdev-profile-header {
        flex-direction: column;
        text-align: center;
    }
    
    .scdev-profile-stats {
        justify-content: center;
    }
}


/* Dark Mode Support */
body.dark-mode .scdev-users-list,
body.dark-mode .scdev-user-profile {
    color: var(--dark-text-color, #f0f0f0);
}

body.dark-mode .scdev-user-card,
body.dark-mode .scdev-post-item {
    background: var(--dark-sidebar-bg-color, #2a2a2a);
    border-color: var(--dark-border-color, #444);
}

body.dark-mode .scdev-user-card:hover,
body.dark-mode .scdev-post-item:hover {
    box-shadow: 0 2px 8px rgba(255,255,255,0.1);
    border-color: var(--dark-primary-color, #4d94ff);
}

body.dark-mode .scdev-profile-header {
    background: var(--dark-sidebar-bg-color, #2a2a2a);
    border-color: var(--dark-border-color, #444);
}

body.dark-mode .scdev-user-search {
    background: var(--dark-content-bg-color, #1a1a1a);
    border-color: var(--dark-border-color, #444);
    color: var(--dark-text-color, #f0f0f0);
}

body.dark-mode .scdev-user-search:focus {
    border-color: var(--dark-primary-color, #4d94ff);
}

body.dark-mode .scdev-search-btn {
    background: var(--dark-sidebar-bg-color, #2a2a2a);
    border-color: var(--dark-border-color, #444);
    color: var(--dark-text-color, #f0f0f0);
}

body.dark-mode .scdev-search-btn:hover {
    background: var(--dark-content-bg-color, #1a1a1a);
    border-color: var(--dark-primary-color, #4d94ff);
}

body.dark-mode .scdev-user-details strong,
body.dark-mode .scdev-post-item h4 a {
    color: var(--dark-text-color, #f0f0f0);
}

body.dark-mode .scdev-user-details strong a {
    color: var(--dark-text-color, #f0f0f0);
}

body.dark-mode .scdev-user-login,
body.dark-mode .scdev-post-meta,
body.dark-mode .scdev-profile-username {
    color: var(--dark-text-muted, #aaa);
}

body.dark-mode .scdev-profile-stats span {
    color: var(--dark-text-muted, #aaa);
}

body.dark-mode .scdev-profile-stats strong {
    color: var(--dark-text-color, #f0f0f0);
}

body.dark-mode .scdev-empty,
body.dark-mode .scdev-empty-posts {
    background: var(--dark-content-bg-color, #1a1a1a);
    color: var(--dark-text-muted, #aaa);
}

body.dark-mode .scdev-follow-btn {
    background: var(--dark-primary-color, #4d94ff);
    border-color: var(--dark-primary-color, #4d94ff);
    color: white;
}

body.dark-mode .scdev-follow-btn:hover {
    background: #3d84ef;
    border-color: #3d84ef;
    box-shadow: 0 2px 6px rgba(77, 148, 255, 0.3);
}

body.dark-mode .scdev-follow-btn.following {
    background: transparent;
    color: var(--dark-text-muted, #aaa);
    border-color: var(--dark-border-color, #444);
}

body.dark-mode .scdev-follow-btn.following:hover {
    background: var(--dark-content-bg-color, #1a1a1a);
    border-color: var(--dark-border-color, #555);
    color: var(--dark-text-color, #f0f0f0);
    box-shadow: none;
}

body.dark-mode .scdev-post-item h4 a:hover {
    color: var(--dark-primary-color, #4d94ff);
}

body.dark-mode .scdev-post-excerpt {
    color: var(--dark-text-muted, #aaa);
}

body.dark-mode .scdev-profile-info h2 {
    color: var(--dark-text-color, #f0f0f0);
}

body.dark-mode .scdev-profile-posts h3 {
    color: var(--dark-text-color, #f0f0f0);
}

body.dark-mode .scdev-user-actions .scdev-block-btn {
    background: var(--dark-sidebar-bg-color, #2a2a2a);
    border-color: #ff5555;
    color: #ff5555;
}

body.dark-mode .scdev-user-actions .scdev-block-btn:hover {
    background: #ff5555;
    color: white;
}

body.dark-mode .scdev-user-actions .scdev-block-btn.blocked {
    background: #ff5555;
    color: white;
}


/* Following Widget */
.scdev-following-widget {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
}

.scdev-following-widget h4 {
    margin: 0 0 15px 0;
    font-size: 16px;
    color: #333;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 10px;
}

.scdev-widget-users {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.scdev-widget-user {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px;
    border-radius: 6px;
    transition: background 0.2s;
}

.scdev-widget-user:hover {
    background: #f5f5f5;
}

.scdev-widget-user-info {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
}

.scdev-widget-avatar {
    position: relative;
    flex-shrink: 0;
    line-height: 0;
}

.scdev-widget-avatar img {
    border-radius: 50%;
}

.scdev-online-indicator {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 10px;
    height: 10px;
    background: #00c853;
    border: 2px solid white;
    border-radius: 50%;
}

.scdev-widget-user-details {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.scdev-widget-name {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.scdev-widget-name:hover {
    color: #0084ff;
}

.scdev-online-text {
    font-size: 11px;
    color: #00c853;
    font-weight: 500;
}

.scdev-message-btn {
    padding: 6px 10px;
    border: none;
    background: #0084ff;
    color: white;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.2s;
    flex-shrink: 0;
}

.scdev-message-btn:hover {
    background: #0073e6;
    transform: scale(1.05);
}

.scdev-widget-empty,
.scdev-widget-login {
    padding: 20px;
    text-align: center;
    color: #666;
    font-size: 14px;
}

.scdev-widget-login a {
    color: #0084ff;
    text-decoration: none;
}

.scdev-widget-login a:hover {
    text-decoration: underline;
}

/* Dark Mode - Widget */
body.dark-mode .scdev-following-widget {
    background: var(--dark-sidebar-bg-color, #2a2a2a);
    border-color: var(--dark-border-color, #444);
}

body.dark-mode .scdev-following-widget h4 {
    color: var(--dark-text-color, #f0f0f0);
    border-color: var(--dark-border-color, #444);
}

body.dark-mode .scdev-widget-user:hover {
    background: var(--dark-content-bg-color, #1a1a1a);
}

body.dark-mode .scdev-widget-name {
    color: var(--dark-text-color, #f0f0f0);
}

body.dark-mode .scdev-widget-name:hover {
    color: var(--dark-primary-color, #4d94ff);
}

body.dark-mode .scdev-online-indicator {
    border-color: var(--dark-sidebar-bg-color, #2a2a2a);
}

body.dark-mode .scdev-widget-empty,
body.dark-mode .scdev-widget-login {
    color: var(--dark-text-muted, #aaa);
}

body.dark-mode .scdev-widget-login a {
    color: var(--dark-primary-color, #4d94ff);
}

body.dark-mode .scdev-message-btn {
    background: var(--dark-primary-color, #4d94ff);
}

body.dark-mode .scdev-message-btn:hover {
    background: #3d84ef;
}


/* Following Page */
.scdev-following-page {
    max-width: 800px;
    margin: 20px auto;
}

.scdev-following-page h2 {
    margin-bottom: 20px;
    font-size: 24px;
}

.scdev-following-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.scdev-following-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.2s;
}

.scdev-following-item:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.scdev-following-user {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.scdev-following-user img {
    border-radius: 50%;
}

.scdev-following-details {
    display: flex;
    flex-direction: column;
}

.scdev-following-name {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
}

.scdev-following-name:hover {
    color: #0084ff;
}

.scdev-following-username {
    font-size: 13px;
    color: #666;
}

.scdev-following-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.scdev-status-eye {
    font-size: 24px;
    filter: grayscale(100%);
    opacity: 0.3;
    transition: all 0.3s;
}

.scdev-status-eye.online {
    filter: grayscale(0%) hue-rotate(90deg);
    opacity: 1;
}

.scdev-message-btn-page {
    padding: 8px 20px;
    border: none;
    background: #0084ff;
    color: white;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
}

.scdev-message-btn-page:hover {
    background: #0073e6;
    transform: translateY(-1px);
}

/* Message Modal */
.scdev-message-modal {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 400px;
    max-width: calc(100vw - 40px);
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 9999;
    display: none;
    flex-direction: column;
    max-height: 600px;
}

.scdev-message-modal.active {
    display: flex;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.scdev-message-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #e0e0e0;
    background: #f8f9fa;
    border-radius: 12px 12px 0 0;
}

.scdev-message-header h4 {
    margin: 0;
    font-size: 16px;
    color: #333;
}

.scdev-message-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
}

.scdev-message-close:hover {
    background: #e0e0e0;
    color: #333;
}

.scdev-message-body {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
    min-height: 300px;
    max-height: 450px;
}

/* Messages Page */
.scdev-messages-page {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}

.scdev-messages-page h2 {
    margin-top: 0;
}

/* Dark Mode - Following Page & Modal */
body.dark-mode .scdev-following-page h2,
body.dark-mode .scdev-messages-page h2 {
    color: var(--dark-text-color, #f0f0f0);
}

body.dark-mode .scdev-following-item {
    background: var(--dark-sidebar-bg-color, #2a2a2a);
    border-color: var(--dark-border-color, #444);
}

body.dark-mode .scdev-following-item:hover {
    box-shadow: 0 2px 8px rgba(255,255,255,0.1);
}

body.dark-mode .scdev-following-name {
    color: var(--dark-text-color, #f0f0f0);
}

body.dark-mode .scdev-following-name:hover {
    color: var(--dark-primary-color, #4d94ff);
}

body.dark-mode .scdev-following-username {
    color: var(--dark-text-muted, #aaa);
}

body.dark-mode .scdev-message-btn-page {
    background: var(--dark-primary-color, #4d94ff);
}

body.dark-mode .scdev-message-btn-page:hover {
    background: #3d84ef;
}

body.dark-mode .scdev-message-modal {
    background: var(--dark-sidebar-bg-color, #2a2a2a);
    border-color: var(--dark-border-color, #444);
}

body.dark-mode .scdev-message-header {
    background: var(--dark-content-bg-color, #1a1a1a);
    border-color: var(--dark-border-color, #444);
}

body.dark-mode .scdev-message-header h4 {
    color: var(--dark-text-color, #f0f0f0);
}

body.dark-mode .scdev-message-close {
    color: var(--dark-text-muted, #aaa);
}

body.dark-mode .scdev-message-close:hover {
    background: var(--dark-sidebar-bg-color, #2a2a2a);
    color: var(--dark-text-color, #f0f0f0);
}

body.dark-mode .scdev-messages-page {
    background: var(--dark-sidebar-bg-color, #2a2a2a);
    border-color: var(--dark-border-color, #444);
    color: var(--dark-text-color, #f0f0f0);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .scdev-message-modal {
        width: calc(100vw - 20px);
        right: 10px;
        bottom: 10px;
    }
    
    .scdev-following-actions {
        flex-direction: column;
        gap: 8px;
    }
    
    .scdev-message-btn-page {
        width: 100%;
    }
}

/* ── Follow approval — pending state ─────────────────────────────────────── */
.scdev-follow-btn.pending {
    background: #6c757d !important;
    border-color: #6c757d !important;
    color: #fff !important;
    cursor: default;
    opacity: 0.85;
}
.scdev-pending-requests-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #dc3545;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    border-radius: 50%;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    margin-left: 4px;
    vertical-align: middle;
}
.scdev-request-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}
.scdev-request-item:last-child { border-bottom: none; }
.scdev-request-actions { display: flex; gap: 8px; margin-left: auto; }
.scdev-follow-approve-btn {
    padding: 5px 12px; border-radius: 6px; border: none;
    background: #28a745; color: #fff; font-size: 13px;
    font-weight: 600; cursor: pointer;
}
.scdev-follow-approve-btn:hover { background: #1e7e34; }
.scdev-follow-decline-btn {
    padding: 5px 12px; border-radius: 6px; border: none;
    background: #dc3545; color: #fff; font-size: 13px;
    font-weight: 600; cursor: pointer;
}
.scdev-follow-decline-btn:hover { background: #b02a37; }

/* ── User profile — Pages & Groups sections ──────────────────────────────── */
.scdev-profile-section {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--wp--preset--color--border, #e0e0e0);
}
.scdev-profile-section h3 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--wp--preset--color--foreground, #333);
}
.scdev-profile-empty {
    color: #888;
    font-size: 14px;
}
.scdev-profile-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}
.scdev-profile-card {
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--wp--preset--color--border, #e0e0e0);
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    background: var(--wp--preset--color--background, #fff);
}
.scdev-profile-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}
.scdev-profile-card-banner {
    height: 80px;
    width: 100%;
}
.scdev-profile-card-body {
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.scdev-profile-card-body strong {
    font-size: 14px;
    color: var(--wp--preset--color--foreground, #333);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.scdev-profile-card-cat {
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.scdev-profile-card-meta {
    font-size: 12px;
    color: #888;
}
@media (max-width: 480px) {
    .scdev-profile-cards-grid { grid-template-columns: 1fr 1fr; }
}

/* ── Stat links (Pages / Groups counts) ─────────────────────────────────── */
.scdev-stat-link {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px dotted currentColor;
    transition: color 0.15s;
}
.scdev-stat-link:hover {
    color: var(--wp--preset--color--primary, #0073aa);
    border-bottom-color: var(--wp--preset--color--primary, #0073aa);
}

/* ── User Meta: full width of parent container ──────────────────────────── */
.scdev-public-profile {
    width: 100%;
    max-width: 100%;
    margin: 0;
    box-sizing: border-box;
}

.scdev-public-profile .pub-profile-hero-shell {
    position: relative;
    width: 100%;
}

/* ── User Meta: hero (full-viewport showcase + glass side rail) ─────────── */
.scdev-public-profile #pub-profile-banner.pub-profile-hero {
    position: relative;
    height: 640px;
    width: 100%;
    margin: 0;
    padding: 0;
    border-radius: 0;
    overflow: hidden;
    box-sizing: border-box;
}

.scdev-public-profile .pub-profile-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-color: #0f172a;
}

.scdev-public-profile .pub-profile-hero-html,
.scdev-public-profile .pub-profile-banner-html-layer {
    position: absolute;
    inset: 0;
    z-index: 2;
    overflow: hidden;
    pointer-events: none;
}

.scdev-public-profile .pub-profile-hero-html * {
    pointer-events: auto;
}

.scdev-public-profile .pub-profile-hero-html--empty {
    visibility: hidden;
}

.scdev-public-profile .pub-profile-hero-side {
    position: absolute;
    top: 10px;
    bottom: auto;
    right: 0;
    z-index: 5;
    width: min(280px, 32vw);
    max-width: min(280px, calc(100vw - 220px));
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    pointer-events: none;
    box-sizing: border-box;
}

.scdev-public-profile .pub-profile-hero-side-inner {
    pointer-events: auto;
    margin: clamp(10px, 2vw, 20px);
    margin-left: 8px;
    padding: 10px 10px;
    align-self: flex-start;
    width: 100%;
    box-sizing: border-box;
    background: rgba(15, 23, 42, 0.35);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
    overflow-y: visible;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Left vertical rail: back + stats (replaces fixed footer) */
.scdev-public-profile .pub-profile-stats-rail {
    position: absolute;
    top: 10px;
    bottom: 0;
    left: 0;
    z-index: 6;
    width: min(178px, 28vw);
    min-width: 156px;
    display: flex;
    align-items: flex-start;
    justify-content: stretch;
    pointer-events: none;
    box-sizing: border-box;
}

@media (min-width: 901px) {
    .scdev-public-profile .pub-profile-stats-rail {
        width: min(150px, 28vw);
    }
}

.scdev-public-profile .pub-profile-stats-rail-inner {
    pointer-events: auto;
    margin: clamp(10px, 2vw, 20px) clamp(6px, 1.5vw, 12px) clamp(10px, 2vw, 20px) clamp(8px, 1.5vw, 14px);
    padding: 10px 9px;
    width: 100%;
    box-sizing: border-box;
    background: rgba(15, 23, 42, 0.42);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
    display: flex;
    flex-direction: column;
    gap: 6px;
    max-height: calc(100% - clamp(20px, 4vw, 40px));
    overflow: visible;
}

.scdev-public-profile .pub-profile-stats-rail-top {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    flex-wrap: nowrap;
    width: 100%;
    position: relative;
    flex-shrink: 0;
}

.scdev-public-profile .pub-profile-stats-rail-top .pub-profile-stats-rail-back {
    flex: 1 1 auto;
    min-width: 0;
    justify-content: flex-start;
}

.scdev-public-profile .pub-profile-stats-rail-top .pub-profile-banner-edit-wrap {
    position: relative;
    flex: 0 0 auto;
    z-index: 4;
}

.scdev-public-profile .pub-profile-stats-rail-top .pub-profile-banner-panel {
    position: absolute;
    left: 0;
    top: calc(100% + 8px);
    margin-top: 0;
    z-index: 40;
    width: min(300px, calc(100vw - 24px));
    max-width: calc(100vw - 24px);
}

.scdev-public-profile .pub-profile-stats-rail-back {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 6px 8px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 10px;
    font-weight: 700;
    color: rgba(248, 250, 252, 0.96);
    background: rgba(30, 41, 59, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.14);
    transition: background 0.15s ease, border-color 0.15s ease;
    flex-shrink: 0;
}

.scdev-public-profile .pub-profile-stats-rail-back:hover {
    background: rgba(51, 65, 85, 0.65);
    border-color: rgba(125, 211, 252, 0.35);
    color: #fff;
}

.scdev-public-profile .pub-profile-stats-rail-back-icon {
    font-size: 12px;
    line-height: 1;
}

.pub-profile-stats-rail--back-only .pub-profile-stats-rail-inner {
    max-height: none;
}

.scdev-public-profile .pub-profile-stats-rail-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.scdev-public-profile .pub-profile-stats-rail .pub-stat--rail {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
    padding: 4px 7px;
    white-space: nowrap;
    border-radius: 8px;
    text-decoration: none;
    color: rgba(241, 245, 249, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.06);
    cursor: pointer;
    text-align: left;
    font: inherit;
    box-sizing: border-box;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.scdev-public-profile .pub-profile-stats-rail .pub-stat--rail:hover {
    background: rgba(255, 255, 255, 0.11);
    border-color: rgba(125, 211, 252, 0.22);
}

.scdev-public-profile .pub-profile-stats-rail .pub-stat--static {
    cursor: default;
}

.scdev-public-profile .pub-profile-stats-rail .pub-stat--static:hover {
    border-color: rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.06);
}

.scdev-public-profile .pub-profile-stats-rail .pub-stat-count {
    font-weight: 500;
    color: #7dd3fc;
    line-height: 1.2;
    flex-shrink: 0;
}

.scdev-public-profile .pub-profile-stats-rail .pub-stat-label {
    font-weight: 500;
    letter-spacing: 0.03em;
    color: rgba(226, 232, 240, 0.9);
    line-height: 1.0;
    text-align: right;
    min-width: 0;
}

.scdev-public-profile .pub-profile-settings-panel--overlay {
    position: absolute;
    left: clamp(8px, 2vw, 16px);
    bottom: clamp(8px, 2vw, 16px);
    z-index: 20;
    width: min(260px, calc(100vw - 24px));
    padding: 14px;
    background: rgba(255, 255, 255, 0.97);
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-sizing: border-box;
}

.scdev-public-profile .pub-profile-settings-panel--overlay h4 {
    margin: 0 0 10px;
    font-size: 14px;
}

.scdev-public-profile .pub-profile-settings-panel--overlay select {
    width: 100%;
    margin-bottom: 10px;
    padding: 8px;
    font-size: 13px;
}

.scdev-public-profile .pub-profile-avatar--hero {
    width: 56px;
    height: 56px;
    border-width: 2px;
    flex-shrink: 0;
}

.scdev-public-profile .pub-profile-hero-head {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.scdev-public-profile .pub-profile-hero-head .pub-profile-identity {
    flex: 1;
    min-width: 0;
}

.scdev-public-profile .pub-profile-hero-head .pub-profile-name {
    margin: 0 0 2px;
    font-size: 16px !important;
    line-height: 1.0;
    word-break: normal;
    overflow-wrap: anywhere;
}

.scdev-public-profile .pub-profile-hero .pub-profile-name {
    color: #25d07f;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
}

.scdev-public-profile .pub-profile-hero .pub-profile-username {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.82);
}

.scdev-public-profile .pub-profile-bio-lead {
    margin: 0;
    font-size: 11px;
    line-height: 1.5;
    color: rgba(248, 250, 252, 0.92);
}

.scdev-public-profile .pub-profile-hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.scdev-public-profile .pub-profile-toggle-btn {
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(15, 23, 42, 0.45);
    color: #f8fafc;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 600;
    padding: 7px 10px;
    cursor: pointer;
}

.scdev-public-profile .pub-profile-toggle-btn:hover {
    background: rgba(30, 41, 59, 0.65);
}

.scdev-public-profile .pub-profile-message-btn {
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(15, 23, 42, 0.45);
    color: #f8fafc;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 600;
    padding: 7px 10px;
    cursor: pointer;
    line-height: 1;
    flex-shrink: 0;
}

.scdev-public-profile .pub-profile-message-btn:hover {
    background: rgba(30, 41, 59, 0.65);
}

.scdev-public-profile .pub-profile-info-box {
    background: rgba(15, 23, 42, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 10px;
}

.scdev-public-profile .pub-profile-info-box-title {
    margin: 0 0 8px;
    color: #9ca3af;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
}

.scdev-public-profile .pub-profile-info-box-content {
    color: #cbd5e1;
    font-size: 12px;
    line-height: 1.0;
}

.scdev-public-profile .pub-profile-info-box select {
    width: 100%;
    padding: 8px;
    border-radius: 8px;
    margin-bottom: 8px;
    font-size: 12px;
    color: #6b7280;
    background: #fff;
}

body.scdev-user-meta-page .scdev-public-profile .pub-profile-info-box select {
    background: rgba(255, 255, 255, 0.96);
    color: #6b7280;
    border: 1px solid rgba(148, 163, 184, 0.28);
    -webkit-text-fill-color: #6b7280;
}

body.scdev-user-meta-page .scdev-public-profile .pub-profile-info-box select option {
    color: #6b7280;
    background: #ffffff;
}

.scdev-public-profile .pub-profile-approval-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: #9ca3af;
    margin-bottom: 10px;
}

.scdev-public-profile .pub-profile-info-box-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin-top: 6px;
}

.scdev-public-profile .pub-settings-save-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 10px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: rgba(255, 255, 255, 0.96);
    color: #6b7280;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    -webkit-text-fill-color: #6b7280;
}

.scdev-public-profile .pub-settings-save-btn:hover {
    background: #ffffff;
    color: #4b5563;
}

.scdev-public-profile .pub-profile-settings-toggle {
    padding: 8px 12px;
    font-size: 13px;
    line-height: 1;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(0, 0, 0, 0.25);
    color: #fff;
    cursor: pointer;
}

.scdev-public-profile .pub-profile-settings-toggle:hover {
    background: rgba(0, 0, 0, 0.4);
}

.scdev-public-profile .pub-profile-meta-grid--hero {
    grid-template-columns: 1fr;
    gap: 8px;
}

.scdev-public-profile .pub-profile-meta-grid--hero .pub-meta-item {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #f1f5f9;
    padding: 6px 8px;
    font-size: 16px;
}

.scdev-public-profile .pub-profile-meta-grid--hero .pub-meta-text a {
    color: #7dd3fc;
}

.scdev-public-profile .pub-profile-meta-grid--hero .level-badge {
    vertical-align: middle;
}

.scdev-public-profile #pub-profile-banner .pub-profile-banner-panel {
    margin-left: 0;
    margin-right: auto;
}

body.night-mode .scdev-public-profile .pub-profile-stats-rail-inner {
    background: rgba(10, 12, 18, 0.35);
    border-color: rgba(255, 255, 255, 0.08);
}

body.night-mode .scdev-public-profile .pub-profile-settings-panel--overlay {
    background: rgba(30, 30, 30, 0.98);
    border-color: rgba(255, 255, 255, 0.08);
    color: #e8e8e8;
}

@media (max-width: 640px) {
    .scdev-public-profile #pub-profile-banner.pub-profile-hero {
        height: auto;
        min-height: 0;
        padding-bottom: 10px;
    }

    .scdev-public-profile .pub-profile-hero-side {
        width: 160px;
        max-width: 160px;
    }

    .scdev-public-profile .pub-profile-hero-side-inner {
        position: relative;
        width: 100%;
        margin: 0 10px 0 6px;
        border-radius: 14px;
        max-height: none;
    }

    /* Mobile: stack identity vertically (not side-by-side) */
    .scdev-public-profile .pub-profile-hero-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .scdev-public-profile .pub-profile-hero-head .pub-profile-identity {
        width: 100%;
    }

    .scdev-public-profile .pub-profile-hero-head .pub-profile-name {
        font-size: 20px;
        line-height: 1.1;
        white-space: normal;
        overflow-wrap: normal;
        word-break: normal;
    }

    .scdev-public-profile .pub-profile-hero .pub-profile-username {
        font-size: 13px;
    }

    .scdev-public-profile .pub-profile-stats-rail {
        width: 110px;
        min-width: 110px;
    }

    .scdev-public-profile .pub-profile-stats-rail-inner {
        margin-left: 6px;
        margin-right: 4px;
        padding: 8px 7px;
    }

    .scdev-public-profile .pub-profile-stats-rail .pub-stat-count,
    .scdev-public-profile .pub-profile-stats-rail .pub-stat-label,
    .scdev-public-profile .pub-profile-stats-rail-back {
        font-size: 10px !important;
    }

    .scdev-public-profile .pub-profile-banner-customize {
        width: 30px;
        height: 30px;
        font-size: 18px;
        border-radius: 10px;
    }

    .scdev-public-profile .pub-profile-banner-panel {
        width: min(280px, calc(100vw - 18px));
        max-width: calc(100vw - 18px);
        padding: 10px;
    }

    .scdev-public-profile .pub-profile-stats-rail-top .pub-profile-banner-panel {
        width: min(280px, calc(100vw - 18px));
        max-width: calc(100vw - 18px);
    }
}

/* ── User Meta: banner customize (public profile shortcode) ─────────────── */
.scdev-public-profile .pub-profile-banner {
    position: relative;
    overflow: hidden;
}

.scdev-public-profile .pub-profile-banner-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.scdev-public-profile .pub-profile-banner-edit-wrap {
    position: relative;
    text-align: left;
}

.scdev-public-profile .pub-profile-banner-customize {
    width: 40px;
    height: 40px;
    padding: 0;
    font-size: 19px;
    font-weight: 600;
    border-radius: 12px;
    border: none !important;
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    cursor: pointer;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.scdev-public-profile .pub-profile-banner-customize:hover {
    background: rgba(0, 0, 0, 0.5);
}

.scdev-public-profile .pub-profile-banner-panel {
    display: none;
    margin-top: 8px;
    padding: 12px;
    width: 280px;
    margin-left: 0;
    margin-right: auto;
    background: rgba(255, 255, 255, 0.97);
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    text-align: left;
    box-sizing: border-box;
}

.scdev-public-profile .pub-profile-banner-panel .pub-banner-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #444;
    margin: 10px 0 4px;
}

.scdev-public-profile .pub-profile-banner-panel .pub-banner-label:first-child {
    margin-top: 0;
}

.scdev-public-profile .pub-profile-banner-panel .pub-banner-file {
    font-size: 12px;
    max-width: 100%;
}

.scdev-public-profile .pub-profile-banner-panel .pub-banner-color {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 34px;
    padding: 2px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background: #fff;
    box-sizing: border-box;
}

.scdev-public-profile .pub-banner-clear-bg {
    display: block;
    margin-top: 8px;
    padding: 6px 10px;
    font-size: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #f5f5f5;
    cursor: pointer;
}

.scdev-public-profile .pub-banner-html {
    width: 100%;
    box-sizing: border-box;
    font-size: 12px;
    font-family: ui-monospace, monospace;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 8px;
    resize: vertical;
}

.scdev-public-profile .pub-banner-hint {
    font-size: 11px;
    color: #666;
    margin: 6px 0 0;
    line-height: 1.35;
}

.scdev-public-profile .pub-banner-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.scdev-public-profile .pub-banner-save {
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    cursor: pointer;
}

.scdev-public-profile .pub-banner-save:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.scdev-public-profile .pub-banner-save-status {
    font-size: 12px;
    color: #333;
}

/* User Meta page only: narrow theme right sidebar (more room for hero) */
body.scdev-user-meta-page .theme-sidebar.theme-sidebar-right {
    width: 208px !important;
    max-width: 208px !important;
}

body.scdev-user-meta-page.layout-full .theme-sidebar.theme-sidebar-right {
    width: 18% !important;
    max-width: 220px !important;
    min-width: 160px !important;
    flex: 0 0 18% !important;
}

body.scdev-user-meta-page .main-content-area .right-sidebar,
body.scdev-user-meta-page .right-sidebar {
    max-width: 208px !important;
}

/* User Meta: visitors blocked by profile visibility */
.scdev-user-meta-gate {
    max-width: 420px;
    margin: 32px auto;
    padding: 24px 28px;
    text-align: center;
    background: rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(148, 163, 184, 0.35);
    border-radius: 14px;
    box-sizing: border-box;
}

.scdev-user-meta-gate-name {
    margin: 0 0 8px;
    font-size: 1.25rem;
    font-weight: 700;
    color: inherit;
}

.scdev-user-meta-gate-msg {
    margin: 0 0 20px;
    font-size: 0.95rem;
    line-height: 1.45;
    color: inherit;
    opacity: 0.9;
}

a.scdev-user-meta-gate-back {
    display: inline-block;
    margin-top: 4px;
    padding: 8px 16px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    background: rgba(59, 130, 246, 0.15);
    color: #2563eb;
    border: 1px solid rgba(37, 99, 235, 0.35);
}

a.scdev-user-meta-gate-back:hover {
    background: rgba(59, 130, 246, 0.28);
}

a.scdev-user-meta-gate-back--ghost {
    background: transparent;
    border-color: rgba(148, 163, 184, 0.5);
    color: inherit;
}
