.eil_yt_tag_container {
    width: 90%;
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.eil_yt_tag_container h4 {
    margin-bottom: 2rem;
    text-align: center;
    font-size: 2rem; /* Larger, more prominent */
    font-weight: bold;
    background: linear-gradient(to right, #007bff, #00c4b4); /* Gradient from blue to teal */
    -webkit-background-clip: text; /* Apply gradient to text */
    background-clip: text;
    color: transparent; /* Make text transparent to show gradient */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    transition: transform 0.3s ease; /* Slight scale on hover for interactivity */
}

.eil_yt_tag_container h4:hover {
    transform: scale(1.05); /* Slight zoom on hover */
}

.eil_yt_tag_container label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}
.eil_yt_tag_container textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 2rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    resize: vertical;
    min-height: 100px;
}

.calculate-button {
    padding: 1rem 2rem;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.calculate-button:hover {
    background: #0056b3;
}

.calculate-button:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

.calculate-button i {
    margin-right: 5px;
}

.eil_yt_tag_result {
    margin-top: 2rem;
    font-size: 1rem;
    text-align: center;
}

.eil_yt_tag_section {
    margin-bottom: 1.5rem;
}

.eil_yt_tag_copy-button {
    padding: 0.8rem 1.5rem;
    background: #28a745;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
}

.eil_yt_tag_copy-button:hover {
    background: #218838;
}

.eil_yt_tag_copy-button i {
    margin-right: 5px;
}

.eil_yt_tag_loader {
    display: none;
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #007bff;
    border-radius: 50%;
    animation: eil_yt_tag_spin 1s linear infinite;
    margin: 1rem auto;
}

@keyframes eil_yt_tag_spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.eil_yt_tag_usage-instructions {
    margin-top: 2rem;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f0f2f5;
    font-size: 14px;
    line-height: 1.5;
}

@media (max-width: 400px) {
    .eil_yt_tag_container {
        padding: 1.5rem;
    }
    .eil_yt_tag_container textarea {
        min-height: 80px;
    }
}