@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600&display=swap');

body {
    background: linear-gradient(135deg, #1a1b26 0%, #24283b 100%);
    color: #c0caf5;
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    margin: 0;
    padding: 20px;
    height: 100vh;
    box-sizing: border-box;
    overflow: hidden;
}

.terminal {
    background: rgba(26, 27, 38, 0.95);
    border-radius: 12px;
    border: 1px solid #414868;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    height: calc(100% - 40px);
    padding: 20px;
    overflow-y: auto;
    backdrop-filter: blur(10px);
}

.terminal-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #414868;
}

.terminal-dots {
    display: flex;
    gap: 8px;
    margin-right: 15px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { 
    background: #f7768e; 
}

.dot.yellow { 
    background: #e0af68; 
}

.dot.green { 
    background: #9ece6a; 
}

.terminal-title {
    color: #565f89;
    font-size: 14px;
}

.output {
    margin-bottom: 8px;
    white-space: pre-wrap;
    line-height: 1.4;
}

.input-line {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.prompt {
    margin-right: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.prompt-user {
    color: #bb9af7;
    font-weight: 600;
}

.prompt-separator {
    color: #565f89;
}

.prompt-host {
    color: #7dcfff;
    font-weight: 600;
}

.prompt-path {
    color: #e0af68;
    font-weight: 500;
}

.prompt-symbol {
    color: #9ece6a;
    font-weight: 600;
}

#command-input {
    background: transparent;
    border: none;
    color: #c0caf5;
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    font-size: inherit;
    outline: none;
    flex: 1;
}

.google-colors {
    display: inline;
    font-weight: 600;
}

.google-blue { 
    color: #4285f4; 
}

.google-red { 
    color: #ea4335; 
}

.google-yellow { 
    color: #fbbc05; 
}

.google-green { 
    color: #34a853; 
}

.cursor {
    color: #c0caf5;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.file {
    color: #c0caf5;
}

.directory {
    color: #7dcfff;
    font-weight: 500;
}

.error {
    color: #f7768e;
}

.success {
    color: #9ece6a;
}

.info {
    color: #7aa2f7;
}

.warning {
    color: #e0af68;
}

/* Scrollbar styling */
.terminal::-webkit-scrollbar {
    width: 8px;
}

.terminal::-webkit-scrollbar-track {
    background: rgba(65, 72, 104, 0.3);
    border-radius: 4px;
}

.terminal::-webkit-scrollbar-thumb {
    background: rgba(192, 202, 245, 0.3);
    border-radius: 4px;
}

.terminal::-webkit-scrollbar-thumb:hover {
    background: rgba(192, 202, 245, 0.5);
}

.ascii-clock {
    color: #7dcfff;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    line-height: 1;
    margin: 10px 0;
}



