/* --- Wrapper (Matches Stopwatch Theme) --- */
#lc-wrapper {
    font-family: 'Press Start 2P', monospace;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    background-color: #111827; /* Gray 900 */
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    border: 2px solid #374151; /* Gray 700 */
    color: white;
    gap: 20px;
}

/* --- Display Area --- */
.lc-display-container {
    background-color: #000;
    border: 4px solid #333;
    border-radius: 8px;
    padding: 20px;
    width: 100%;
    text-align: center;
    box-shadow: inset 0 0 15px rgba(0,0,0,0.8);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Glass reflection effect */
.lc-display-container::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to bottom, rgba(255,255,255,0.05), transparent);
    pointer-events: none;
}

.lc-label {
    font-size: 0.6rem;
    color: #9ca3af;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lc-result-val {
    font-size: 2.5rem; /* Large Digital Font */
    color: #6b7280; /* Gray by default */
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    margin: 10px 0;
    font-family: 'Press Start 2P', monospace, sans-serif;
    font-weight: bold;
    word-break: break-all;
}

.lc-status {
    font-size: 0.7rem;
    color: #4b5563;
    margin-top: 5px;
}

.lc-status.success {
    color: #10b981;
}

/* --- Inputs --- */
.lc-inputs {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.lc-input-group {
    background-color: #1f2937;
    padding: 10px 15px;
    border-radius: 6px;
    border: 1px solid #374151;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.lc-input-group label {
    font-size: 0.6rem;
    color: #fbbf24; /* Amber */
    text-transform: uppercase;
}

.lc-input {
    background-color: #111827;
    border: 2px solid #4b5563;
    color: white;
    font-family: 'Press Start 2P', monospace, sans-serif;
    font-size: 1.1rem;
    padding: 8px;
    border-radius: 4px;
    text-align: right;
    outline: none;
    width: 100%;
    transition: all 0.2s;
}

.lc-input:focus {
    border-color: #3b82f6; /* Blue */
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.3);
}

/* --- Stats Panel --- */
.lc-stats-panel {
    width: 100%;
    background-color: #1f2937;
    border-radius: 8px;
    padding: 15px;
    border: 1px solid #374151;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lc-stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Press Start 2P', monospace, sans-serif;
    font-size: 0.9rem;
    color: #d1d5db;
    border-bottom: 1px solid #374151;
    padding-bottom: 5px;
}

.lc-stat-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.lc-stat-row span:first-child {
    font-size: 0.7rem;
    color: #9ca3af;
    font-family: 'Press Start 2P', monospace;
}

.text-red-400 { color: #f87171; }
.text-green-400 { color: #4ade80; }

/* --- Reset Button --- */
.lc-btn-reset {
    width: 100%;
    background-color: #ef4444;
    color: #7f1d1d;
    border: none;
    border-bottom: 4px solid #b91c1c;
    border-radius: 4px;
    padding: 15px;
    font-family: inherit;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.1s;
}

.lc-btn-reset:active {
    transform: translateY(4px);
    border-bottom: none;
    margin-bottom: 4px;
}

.lc-btn-reset:hover {
    background-color: #dc2626;
}