/* TV to InDesign Plugin Styles */

.tv-to-indesign-upload {
    max-width: 600px;
    margin: 20px 0;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
}

.upload-area {
    margin-bottom: 15px;
}

.upload-area label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.upload-area input[type="file"] {
    width: 100%;
    padding: 8px;
}

.upload-area small {
    display: block;
    color: #666;
    margin-top: 5px;
}

.upload-controls {
    text-align: center;
    margin-bottom: 15px;
}

.upload-button {
    background-color: #0073aa;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 16px;
}

.upload-button:hover {
    background-color: #005a87;
}

.progress-container {
    margin: 15px 0;
}

.progress-bar {
    width: 100%;
    height: 20px;
    background-color: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background-color: #0073aa;
    width: 0%;
    transition: width 0.3s ease;
}

.progress-text {
    text-align: center;
    margin-top: 5px;
    font-weight: bold;
}

.result-container {
    margin-top: 15px;
    padding: 10px;
    border-radius: 3px;
}

.result-success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.result-error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.download-link {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 15px;
    background-color: #28a745;
    color: white;
    text-decoration: none;
    border-radius: 3px;
}

.download-link:hover {
    background-color: #218838;
}