

.input-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.meta-input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e1e4e8;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.meta-input:focus {
    border-color: #0066cc;
    outline: none;
}

.char-count {
    font-size: 0.875rem;
    color: #666;
    text-align: right;
    margin-top: 0.25rem;
}

.warning {
    color: #e65100;
}

.error {
    color: #d32f2f;
}

.preview-section {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.preview-title {
    font-size: 1.25rem;
    color: #1a0dab;
    margin-bottom: 0.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.preview-url {
    color: #006621;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.preview-description {
    color: #545454;
    font-size: 0.875rem;
    line-height: 1.4;
}

.code-section {
    background: #2d2d2d;
    padding: 1.5rem;
    border-radius: 8px;
    position: relative;
}

.code-content {
    color: #ffffff;
    font-family: monospace;
    white-space: pre-wrap;
    margin-bottom: 1rem;
}

.copy-button {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #4a4a4a;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.copy-button:hover {
    background: #666;
}

.copy-button.copied {
    background: #28a745;
}

.generate-button {
    width: 100%;
    padding: 1rem;
    background: #0066cc;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition:  0.3s;
}

.generate-button:hover {
    background: #0052a3;
}

.generate-button:disabled {
    background: #ccc;
    cursor: not-allowed;
}