/* Halo Response Time Plugin Styles */

.halo-response-time {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    text-align: center;
}

.halo-response-time.error {
    color: #d63384;
    font-style: italic;
}

/* Default format */
.response-time-default {
    display: inline-block;
    padding: 8px 12px;
    background: #f8f9fa;
    border-radius: 6px;
    border-left: 4px solid #007cba;
    text-align: left;
}

.response-time-default .label {
    font-weight: 600;
    color: #333;
}

.response-time-default .time {
    font-size: 1.2em;
    font-weight: bold;
    color: #007cba;
    margin: 0 4px;
}

.response-time-default .count {
    color: #666;
    font-size: 0.9em;
}

/* Minimal format */
.halo-response-time .response-time {
    color: #552C83;
    font-weight: bold;
    font-size: 0.85em;
    text-align: center;
    justify-content: center;
}

/* Detailed format */
.response-time-detailed {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #007cba 0%, #005a87 100%);
    color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.response-time-detailed h3 {
    margin: 0 0 15px 0;
    font-size: 1.1em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.response-time-detailed .time-display {
    font-size: 3em;
    font-weight: bold;
    margin: 10px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.response-time-detailed .ticket-count {
    margin: 15px 0 0 0;
    opacity: 0.9;
    font-size: 0.9em;
}

/* Responsive */
@media (max-width: 768px) {
    .response-time-detailed .time-display {
        font-size: 2.5em;
    }
    
    .response-time-detailed {
        padding: 15px;
    }
}

/* Widget styles */
.widget .halo-response-time {
    margin: 0;
}

.widget .response-time-default {
    width: 100%;
    text-align: center;
    display: block;
}

/* Admin styles */
.halo-admin-test {
    margin-top: 20px;
    padding: 15px;
    background: #f0f0f1;
    border-radius: 4px;
}

.halo-admin-test .button {
    margin-right: 10px;
}