/* Custom retro terminal styles */
.retro-container {
    font-family: 'Courier New', Monaco, monospace;
    background: #000080;
    color: #FFFFFF;
}

.retro-header {
    background: #000080;
    border-bottom: 2px solid #FFFF00;
}

.retro-panel {
    background: #000040;
    border: 2px solid #808080;
    border-radius: 0;
    padding: 1rem;
    box-shadow: inset 1px 1px 0 #C0C0C0, inset -1px -1px 0 #404040;
}

.retro-checkbox {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    border: 1px solid #FFFFFF;
    background: transparent;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
}

.retro-checkbox:checked::after {
    content: '✓';
    position: absolute;
    top: -2px;
    left: 0;
    color: #00FF00;
    font-size: 10px;
    font-weight: bold;
}

.retro-button {
    background: #000040;
    border: 1px solid #808080;
    color: #FFFFFF;
    padding: 4px 8px;
    cursor: pointer;
    transition: background-color 0.2s;
    font-family: 'Courier New', Monaco, monospace;
    font-size: 12px;
}

.retro-button:hover:not(:disabled) {
    background: #000060;
    border-color: #FFFF00;
}

.retro-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.retro-select {
    font-family: 'Courier New', Monaco, monospace;
    font-size: 12px;
}

/* Terminal-style text effects */
.text-cyan-400 { color: #00FFFF !important; }
.text-yellow-400 { color: #FFFF00 !important; }
.text-green-400 { color: #00FF00 !important; }
.text-red-400 { color: #FF0000 !important; }
.text-magenta-400 { color: #FF00FF !important; }

/* Progress bar styling */
pre {
    letter-spacing: 0;
}

/* Scrollbar styling */
.overflow-y-auto::-webkit-scrollbar {
    width: 8px;
}

.overflow-y-auto::-webkit-scrollbar-track {
    background: #000040;
}

.overflow-y-auto::-webkit-scrollbar-thumb {
    background: #808080;
    border-radius: 4px;
}

/* Border styling to match retro aesthetic */
.border-b, .border-t {
    border-style: solid;
}

/* Hover effects for interactive elements */
label:hover {
    background-color: #000060 !important;
}

/* Report preview styling */
.bg-black {
    background-color: #000000;
}

.border-green-400 {
    border-color: #00FF00;
}

/* Animation for blinking cursor effect */
@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.blink {
    animation: blink 1s infinite;
}

/* Enhanced styling for service list */
.service-item {
    border-left: 3px solid transparent;
}

.service-item:hover {
    border-left-color: #00FFFF;
}

.service-item.selected {
    border-left-color: #00FF00;
    background-color: #000060;
}