.shayari-tools-wrapper {
    margin: 1.5rem 0;
}
.shayari-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.02);
    padding: 1.5rem;
    transition: transform 0.2s ease;
}
.shayari-content {
    font-size: 1.2rem;
    line-height: 1.7;
    white-space: pre-wrap;
    word-break: break-word;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 500;
}
.shayari-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}
.shayari-copy-btn,
.shayari-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    padding: 0.6rem 1.4rem;
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.btn-icon {
    font-size: 1.1rem;
}
.shayari-copy-btn:active,
.shayari-download-btn:active {
    transform: scale(0.96);
}
/* Mobile optimization */
@media (max-width: 640px) {
    .shayari-card {
        padding: 1rem;
        border-radius: 16px;
    }
    .shayari-content {
        font-size: 1rem;
        line-height: 1.5;
    }
    .shayari-copy-btn,
    .shayari-download-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        flex: 1;
        justify-content: center;
    }
    .btn-icon {
        font-size: 1rem;
    }
}
.toast-message {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #1f2937;
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 40px;
    font-size: 0.85rem;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    white-space: nowrap;
    font-weight: 500;
}
@media (max-width: 480px) {
    .toast-message {
        white-space: normal;
        max-width: 80%;
        text-align: center;
        font-size: 0.75rem;
    }
}