/* Dynamic styles for osTicket */
/* These styles replace inline styles that were being set by JavaScript */

/* Overlay styles */
#overlay {
    opacity: 0.3;
    top: 0;
    left: 0;
}

/* Loading styles */
#loading {
    top: 33.333%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Form change indicator */
.form-changed input[type=submit] {
    color: red !important;
}

/* Non-local image placeholder */
.non-local-image {
    background: #f0f0f0;
    border: 1px solid #ccc;
    padding: 10px;
    text-align: center;
    color: #666;
}

/* jQuery UI specific styles */
.ui-dialog {
    position: fixed;
}

.ui-tooltip {
    position: absolute;
}

/* Redactor specific styles */
.redactor-editor {
    min-height: 200px;
}

/* Select2 specific styles */
.select2-container {
    width: 100%;
}

/* File dropbox styles */
.file-dropbox-shim {
    display: inline-block !important;
}

.file-dropbox-dragover {
    background-color: rgba(0, 0, 0, 0.3) !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #loading {
        left: 50%;
        transform: translateX(-50%);
    }
} 