<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Quiz Generator Styles */
/* quiz-generator.css */
.openai-quiz-generator-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    border-radius: 4px;
}

.quiz-generator-form {
    margin-bottom: 20px;
}

.form-row {
    margin-bottom: 15px;
}

.form-row label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-row input[type="text"],
.form-row input[type="number"],
.form-row input[type="url"],
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.form-row textarea {
    min-height: 120px;
    resize: vertical;
}

.credits-info {
    margin-bottom: 20px;
    padding: 10px;
    background-color: #f8f9fa;
    border-left: 4px solid #4caf50;
}

/* Tabs Styles */
.quiz-tabs {
    display: flex;
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
    flex-wrap: wrap;
}

.quiz-tab {
    padding: 10px 15px;
    cursor: pointer;
    margin-right: 5px;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-bottom: none;
    border-radius: 4px 4px 0 0;
    transition: all 0.2s ease;
}

.quiz-tab:hover {
    background-color: #e9e9e9;
}

.quiz-tab.active {
    background-color: #fff;
    border-bottom: 1px solid #fff;
    margin-bottom: -1px;
    font-weight: bold;
}

.tab-content {
    display: none;
    padding: 15px 0;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* File Upload Styles */
.file-drop-area {
    border: 2px dashed #ccc;
    padding: 25px;
    text-align: center;
    margin-bottom: 15px;
    border-radius: 4px;
    transition: all 0.2s ease;
    background-color: #f9f9f9;
    cursor: pointer;
}

.file-drop-area:hover {
    border-color: #aaa;
    background-color: #f5f5f5;
}

.file-drop-area.highlight {
    border-color: #4caf50;
    background-color: #f0f7ee;
}

.file-msg {
    font-style: italic;
    color: #666;
    margin: 0;
}

.file-input {
    display: none;
}

#pdf-file-info, 
#img-preview,
#video-preview {
    margin-top: 15px;
    padding: 10px;
    background-color: #f8f9fa;
    border-radius: 4px;
}

#img-preview img {
    max-width: 100%;
    max-height: 200px;
    display: block;
    margin: 0 auto;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

#video-preview iframe {
    width: 100%;
    max-width: 560px;
    display: block;
    margin: 0 auto;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* Error Message */
.error-message {
    color: #721c24;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 4px;
}

/* Quiz List Styles */
.openai-quiz-list-container {
    max-width: 800px;
    margin: 0 auto;
}

.quiz-list-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.quiz-list-table th,
.quiz-list-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.quiz-list-table th {
    background-color: #f5f5f5;
    font-weight: bold;
}

.quiz-actions .button {
    margin-right: 5px;
}

/* Modal Styles */
#login-register-modal,
#share-modal,
#embed-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    z-index: 9999;
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    max-width: 500px;
    width: 90%;
}

.close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
}

.share-url-container {
    display: flex;
    margin: 15px 0;
}

.share-url-container input {
    flex: 1;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
}

.share-url-container button {
    border-radius: 0 4px 4px 0;
}

.social-sharing {
    margin-top: 15px;
    display: flex;
    justify-content: space-around;
}

.social-sharing a {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 4px;
    text-decoration: none;
    color: #fff;
}

.share-facebook {
    background-color: #3b5998;
}

.share-twitter {
    background-color: #1da1f2;
}

.share-email {
    background-color: #ea4335;
}

#embed-code {
    width: 100%;
    padding: 8px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.embed-preview {
    margin-top: 20px;
}

/* Success Message */
.success-message {
    padding: 15px;
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
    border-radius: 4px;
    margin-bottom: 20px;
}

/* Upload progress */
.upload-progress {
    height: 4px;
    width: 100%;
    background-color: #f0f0f0;
    border-radius: 2px;
    margin-top: 10px;
    overflow: hidden;
    display: none;
}

.progress-bar {
    height: 100%;
    width: 0;
    background-color: #4caf50;
    transition: width 0.3s ease;
}

/* Generate Button */
#generate-quiz-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: #4caf50;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    margin-top: 20px;
}

#generate-quiz-btn:hover {
    background-color: #45a049;
}

#generate-quiz-btn:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

/* Loading Indicator */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    margin-right: 10px;
    vertical-align: middle;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .quiz-tabs {
        flex-direction: row;
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 5px;
    }
    
    .quiz-tab {
        flex: none;
    }
    
    .social-sharing {
        flex-direction: column;
        gap: 10px;
    }
    
    .quiz-list-table th:nth-child(2),
    .quiz-list-table td:nth-child(2) {
        display: none;
    }
    
    .file-drop-area {
        padding: 15px 10px;
    }
}

/* Add visual indicators for required fields */
.form-row label.required:after {
    content: "*";
    color: #dc3545;
    margin-left: 4px;
}

/* File Info Styles */
.file-info {
    display: flex;
    align-items: center;
    margin-top: 10px;
    padding: 8px;
    background-color: #f8f9fa;
    border-radius: 4px;
}

.file-info-icon {
    margin-right: 10px;
    color: #4caf50;
}

.file-info-details {
    flex: 1;
}

.file-info-name {
    font-weight: bold;
    margin-bottom: 2px;
}

.file-info-size {
    font-size: 12px;
    color: #666;
}

.file-info-remove {
    color: #dc3545;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
}

.file-info-remove:hover {
    background-color: #f8d7da;
}</pre></body></html>