/* Copyright Meta Tag Generator Styles */
.copyright-meta-tool textarea {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9rem;
    background-color: #f8f9fa;
}

.copyright-meta-tool .btn-outline-secondary {
    transition: all 0.3s ease;
}

.copyright-meta-tool .btn-outline-secondary:hover {
    background-color: #6c757d;
    color: white;
}

/* Copy button feedback animation */
@keyframes fadeInOut {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

.copied-feedback {
    animation: fadeInOut 1s;
    background-color: #198754 !important;
    color: white !important;
    border-color: #198754 !important;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .copyright-meta-tool textarea {
        min-height: 100px;
    }
}