/* Clean Right Sidebar Styles */

/* Reset any existing right sidebar styles */
.right-sidebar {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 0;
}

.right-sidebar > div {
    background: transparent;
    border: none;
    box-shadow: none;
    margin-bottom: 0;
    padding: 0;
    transition: none;
}

/* Sidebar Sections */
.sidebar-section {
    margin-bottom: 32px;
}

/* Clean Widget Base */
.clean-widget {
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
}

/* Business Section Styles */
.clean-widget h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.clean-widget p {
    font-size: 14px;
    color: #6b7280;
    margin: 0 0 20px 0;
    line-height: 1.4;
}

/* Clean Button Styles */
.clean-btn {
    background: transparent;
    border: 1px solid #d1d5db;
    color: #374151;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s ease;
    margin-right: 8px;
}

.clean-btn:hover {
    border-color: #9ca3af;
    color: #1f2937;
}

.clean-btn.primary {
    background: #1f2937;
    border-color: #1f2937;
    color: white;
    margin-right: 0;
}

.clean-btn.primary:hover {
    background: #111827;
    border-color: #111827;
}

/* Business Display Styles */
.business-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.business-avatar {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    object-fit: cover;
    background: #f3f4f6;
    flex-shrink: 0;
}

.business-info h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 2px 0;
}

.business-info span {
    font-size: 13px;
    color: #6b7280;
}

.business-actions {
    display: flex;
    gap: 8px;
}

.business-actions .clean-btn {
    margin-right: 0;
    padding: 6px 12px;
    font-size: 13px;
}

/* Links Section */
.link-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.clean-link {
    color: #6b7280;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    padding: 0;
    transition: color 0.15s ease;
}

.clean-link:hover {
    color: #1f2937;
}

/* Footer */
.sidebar-footer {
    margin-top: auto;
    padding-top: 20px;
}

.sidebar-footer p {
    font-size: 12px;
    color: #9ca3af;
    margin: 0;
    text-align: left;
    line-height: 1.4;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .right-sidebar {
        gap: 24px;
    }
    
    .sidebar-section {
        margin-bottom: 24px;
    }
    
    .clean-widget h3 {
        font-size: 16px;
    }
    
    .business-actions {
        flex-direction: column;
    }
    
    .business-actions .clean-btn {
        margin-right: 0;
        margin-bottom: 6px;
    }
}
