/* Minification failed. Returning unminified contents.
(55,43): run-time error CSS1030: Expected identifier, found '['
(55,48): run-time error CSS1031: Expected selector, found '='
(55,48): run-time error CSS1025: Expected comma or open brace, found '='
(353,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
 */
/* ======================== Error Analytics Dashboard ======================== */

.error-analytics .dashboard-container {
    display: flex;
    flex-wrap: nowrap;
    padding: 10px;
    background-color: #EEEEEE;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.error-analytics .left-panel {
    flex: 1 1 20%;
    max-width: 20%;
    padding: 20px;
    border-right: 1px solid #dee2e6;
    box-sizing: border-box;
}

.error-analytics .right-panel {
    flex: 1 1 80%;
    max-width: 80%;
    padding: 20px;
    box-sizing: border-box;
    position: relative;
}

.error-analytics h3 {
    margin-bottom: 15px;
    font-size: 14px;
    color: #343a40;
    align-content: flex-start;
}

.error-analytics label {
    font-size: 11px;
    color: #495057;
}

/* Form Group Styles */
.error-analytics .form-group {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

    .error-analytics .form-group input[type="checkbox"] {
        margin-right: 5px;
    }

    .error-analytics .form-group label {
        margin-bottom: 0;
    }

    /* Styles for date input groups */
    .error-analytics .form-group:has(input[type="date"]) {
        display: block;
    }

    .error-analytics .form-group input[type="date"] {
        margin-top: 5px;
    }

.error-analytics input[type="date"] {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ced4da;
    border-radius: 5px;
    box-sizing: border-box;
}

/* Button Styles */
.error-analytics .button {
    width: 100%;
    padding: 10px 20px;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 11px;
    cursor: pointer;
    margin-bottom: 10px;
}

.error-analytics .button-primary {
    background-color: #706868;
}

/* Chart Styles */
.error-analytics .chart {
    width: 30%;
    margin-bottom: 20px;
}

.error-analytics .chart-canvas {
    width: 100% !important;
    height: 100% !important;
    min-height: 250px;
}

.error-analytics .chart-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    margin: 10px 0;
}

.error-analytics .chart-wrapper {
    background-color: #EEEEEE;
    border: 2px solid #CCBBBB;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 5px;
    width: calc(33.333% - 13.333px);
    min-height: 300px;
    max-height: 300px;
    position: relative;
}

/* Error Message */
.error-analytics .error-message {
    color: red;
    margin-top: 20px;
}

/* Refresh Controls */
.error-analytics .refresh-container {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.error-analytics .refresh-info {
    font-size: 10px;
    font-weight: 600;
    color: #555;
}

.error-analytics .refresh-button {
    padding: 3px 6px;
    background-color: #706868;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

    .error-analytics .refresh-button:hover {
        background-color: #0056b3;
    }

/* Time Graph Styles */
.error-analytics .time-graph-container {
    width: 100%;
    height: 400px;
}

.error-analytics .time-graph {
    width: 100%;
    height: 300px;
    background-color: #EEEEEE;
    border: 2px solid #CCBBBB;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-top: 10px;
}

.error-analytics .graph-controls {
    display: flex;
    justify-content: flex-start;
}

.error-analytics .time-graph-dropdown {
    appearance: none;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 4px 30px 4px 10px;
    font-size: 11px;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
}

    .error-analytics .time-graph-dropdown:hover {
        border-color: #bdbdbd;
    }

    .error-analytics .time-graph-dropdown:focus {
        outline: none;
        border-color: #2196f3;
        box-shadow: 0 0 0 2px rgba(33, 150, 243, 0.2);
    }

/* No Data Message */
.error-analytics .no-data-message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #6c757d;
    font-size: 14px;
    font-weight: bold;
    background-color: #EEEEEE;
    padding: 10px;
    border-radius: 4px;
    z-index: 10;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .error-analytics .chart-container {
        flex-wrap: wrap;
    }

    .error-analytics .chart-wrapper {
        width: calc(50% - 10px);
    }
}

@media (max-width: 768px) {
    .error-analytics .chart-wrapper {
        width: 100%;
    }
}

/* Abbreviations List */
.error-analytics-abbreviations-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 10px;
}

.error-analytics-abbreviation-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.error-analytics-proj-abbr {
    font-weight: bold;
    width: 90px;
    text-align: left;
}

.error-analytics-proj-full-name {
    text-align: left;
    flex-grow: 1;
}

.error-analytics-legend-title {
    font-size: 11px;
    color: #333;
    font-weight: bold;
    margin-bottom: 0.1rem;
    text-align: left;
}

/* ========================== Register Error Configuration ========================== */

.register-error .form-group {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.register-error label {
    width: 155px;
    font-size: 11px;
    color: #555;
    margin-right: 10px;
    padding-top: 6px;
}

.register-error input[type="text"],
.register-error textarea,
.register-error select {
    flex: 1;
    padding: 6px 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 11px;
    transition: border-color 0.3s;
}

.register-error textarea {
    resize: vertical;
    min-height: 60px;
}

.form-field-error-message {
    color: red;
    font-size: 0.8em;
    margin: 5px 0 0 10px;
}

.register-error .checkbox-container {
    display: flex;
    align-items: center;
    margin-left: 130px;
    margin-bottom: 10px;
}

.register-error .checkbox-group {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

    .register-error .checkbox-group input[type="checkbox"] {
        margin-right: 5px;
    }

    .register-error .checkbox-group label {
        width: auto;
        margin-right: 0;
        text-align: left;
        padding-top: 0;
    }

/* ======================= View / Edit Error Configuration Dialog ======================= */

.error-analytics-search-container {
    display: flex;
    gap: 10px;
    width: 100%;
}

.error-analytics-search-input {
    flex: 4;
    padding: 5px !important;
    margin-bottom: 10px;
    width: 100%;
}

.error-analytics-search-button {
    height: 25px;
}

/* AG Grid Specific Styles */
.ag-theme-alpine {
    --ag-font-size: 11px;
}

.ag-header-cell-label {
    font-weight: 600;
}

.ag-cell {
    padding: 5px 0;
}

