/* Facebook Sidebar Styles */
.facebook-sidebar {
    width: 197px;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    overflow: hidden;
    margin-bottom: 20px;
}

.sidebar-header {
    background: url('/Designer/body-r-u.jpg') no-repeat;
    height: 10px;
    width: 197px;
}

.sidebar-content {
    background: url('/Designer/body-r-m.jpg') repeat-y;
    width: 197px;
    padding: 20px 10px;
    text-align: center;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.sidebar-footer {
    background: url('/Designer/body-r-b.jpg') no-repeat;
    height: 20px;
    width: 197px;
}

.facebook-link {
    display: block;
    width: 130px;
    color: #ffffff;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: normal;
    padding: 5px;
    background: transparent;
    border: none;
    transition: color 0.3s ease;
}

.facebook-link:hover {
    color: #cccccc;
    background: transparent;
    transform: none;
    box-shadow: none;
}

.facebook-link:focus {
    outline: 1px solid #999;
    outline-offset: 1px;
}

.facebook-logo {
    width: 150px;
    height: 150px;
    border: 0;
    transition: opacity 0.3s ease;
}

.facebook-logo:hover {
    opacity: 0.8;
    transform: none;
}

.facebook-like-widget {
    width: 150px;
    height: 200px;
    border: none;
    overflow: hidden;
    background: transparent;
}

/* Responsive Design */
@media (max-width: 768px) {
    .facebook-sidebar {
        width: 100%;
        max-width: 197px;
        margin: 0 auto;
    }
    
    .sidebar-header,
    .sidebar-footer {
        width: 100%;
    }
    
    .sidebar-content {
        width: 100%;
        background-size: 100% auto;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .facebook-link,
    .facebook-logo {
        transition: none;
    }
    
    .facebook-link:hover {
        transform: none;
    }
    
    .facebook-logo:hover {
        transform: none;
    }
}