/* public/assets/css/main.css - SocialBD Main Frontend Custom Styles */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background-color: #f3f4f6;
    color: #1f2937;
    -webkit-font-smoothing: antialiased;
}

/* Custom Smooth Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Blue Verification Badge Glow Effect */
.verified-badge-glow {
    filter: drop-shadow(0px 0px 4px rgba(59, 130, 246, 0.5));
}

/* Sponsored / Boosted Post Highlight Border */
.sponsored-post-card {
    border: 1px solid #e9d5ff !important;
    background: linear-gradient(180deg, #faf5ff 0%, #ffffff 100%);
    box-shadow: 0 4px 15px -3px rgba(168, 85, 247, 0.1);
}

/* Policy Compliant Google Ad Outer Wrapper */
.google-ad-wrapper {
    transition: all 0.2s ease-in-out;
}
.google-ad-wrapper:hover {
    border-color: #94a3b8;
}

/* Modal Transition Overlay */
.modal-overlay {
    backdrop-filter: blur(4px);
    transition: opacity 0.25s ease-in-out;
}

/* Toast Notification Animation */
@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
.toast-slide-up {
    animation: slideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}