/* Shared container styling */
.quote-container-appzoic {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 50px 30px;
    font-size: 24px;
    border-radius: 20px;
    text-align: center;
    line-height: 36px;
    letter-spacing: 1px;
}

.quote-actions-appzoic {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 50px;
}

/* Base button design */
.quote-actions-appzoic span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
}

.quote-actions-appzoic span i {
    font-size: 20px;
    color: #fff;
    transition: transform 0.3s ease;
}

/* Hover effect */
.quote-actions-appzoic span:hover {
    transform: scale(1.1);
}

/* Platform-specific styles */
.facebook-action-appzoic {
    background-color: #3b5998;
}

.whatsapp-action-appzoic {
    background-color: #25D366;
}

.telegram-action-appzoic {
    background-color: #0088cc;
}

.twitter-action-appzoic {
    background-color: #1DA1F2;
}

.linkedin-action-appzoic {
    background-color: #0077b5;
}

.copy-action-appzoic {
    background-color: #333333;
}

/* Responsive: Make them slightly bigger on larger screens */
@media (min-width: 768px) {
    .quote-actions-appzoic span {
        width: 48px;
        height: 48px;
    }

    .quote-actions-appzoic span i {
        font-size: 22px;
    }
}