/* Custom classes */
.form-input {
    @apply block w-full bg-white/50 dark:bg-darkpanel/50 backdrop-blur-sm border border-gray-200 dark:border-gray-700 rounded-lg px-4 py-2.5 text-gray-900 dark:text-white placeholder-gray-400 dark:placeholder-gray-500 focus:border-primary dark:focus:border-primary focus:ring-primary focus:ring-1 transition-all outline-none shadow-sm;
}

/* Custom Scrollbar */
.custom-scrollbar::-webkit-scrollbar,
pre::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
.custom-scrollbar::-webkit-scrollbar-track,
pre::-webkit-scrollbar-track {
    background: transparent; 
}
.custom-scrollbar::-webkit-scrollbar-thumb,
pre::-webkit-scrollbar-thumb {
    background: rgba(156, 163, 175, 0.3); 
    border-radius: 4px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover,
pre::-webkit-scrollbar-thumb:hover {
    background: rgba(156, 163, 175, 0.5); 
}

/* Syntax Highlighting for SSH Config */
.token-keyword {
    color: #F39C12; /* Primary Amber Gold */
    font-weight: 500;
}
.token-value {
    color: #E2E8F0; /* Slate 200 */
}
.token-host {
    color: #00CEC9; /* Accent Cyan */
    font-weight: 600;
}
.token-comment {
    color: #6B7280; /* Gray 500 */
    font-style: italic;
}
