/* Usability Testing Styles */

/* Test Mode Indicator */
.usability-test-indicator {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #ff6600;
    color: white;
    padding: 5px 10px;
    text-align: center;
    font-weight: bold;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Help Button */
.usability-test-help-button {
    margin-left: 10px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: white;
    color: #ff6600;
    border: none;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Help Dialog */
.usability-test-help-dialog {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.usability-test-help-content {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.usability-test-help-content h3 {
    margin-top: 0;
    color: #ff6600;
}

.usability-test-help-close {
    margin-top: 20px;
    padding: 5px 10px;
    background-color: #ff6600;
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

/* Task Buttons */
.usability-test-task-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #f0f0f0;
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
    z-index: 9999;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}

.usability-test-task-button {
    padding: 5px 10px;
    background-color: #e0e0e0;
    border: 1px solid #ccc;
    border-radius: 3px;
    cursor: pointer;
}

.usability-test-task-button.active {
    background-color: #ff6600;
    color: white;
    border-color: #ff6600;
}

.usability-test-task-button.completed {
    background-color: #4caf50;
    color: white;
    border-color: #4caf50;
}

.usability-test-complete-button {
    padding: 5px 10px;
    background-color: #4caf50;
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    margin-left: 10px;
}

.usability-test-export-button {
    padding: 5px 10px;
    background-color: #2196f3;
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    margin-left: 10px;
}

/* Notification */
.usability-test-notification {
    position: fixed;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    z-index: 10000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Adjust body padding to accommodate fixed elements */
body.usability-test-mode {
    padding-top: 30px;
    padding-bottom: 50px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .usability-test-task-buttons {
        flex-direction: column;
        align-items: stretch;
        padding: 5px;
    }
    
    .usability-test-task-button,
    .usability-test-complete-button,
    .usability-test-export-button {
        margin: 2px 0;
    }
}