/* 
 * Ghost Terminal UI Styles
 */

 .terminal-content {
    background: #0d0d12;
    border: 1px solid rgba(0, 255, 0, 0.2);
    box-shadow: 0 0 40px rgba(0, 255, 0, 0.1);
    width: 95%;
    max-width: 800px;
    height: 85vh;
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
    font-family: 'Courier New', Courier, monospace;
}

.term-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.8);
    border-bottom: 1px solid rgba(0, 255, 0, 0.2);
}

.term-header h3 {
    margin: 0;
    font-size: 14px;
    font-weight: bold;
    color: #0f0;
    letter-spacing: 1px;
}

.term-actions {
    display: flex;
    gap: 8px;
}

.term-actions .icon-btn {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    background: transparent;
    border: 1px solid rgba(0, 255, 0, 0.3);
    color: #0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.term-actions .icon-btn:hover {
    background: rgba(0, 255, 0, 0.2);
}

.term-actions .icon-btn.danger {
    color: #f33;
    border-color: rgba(255, 51, 51, 0.3);
}

.term-actions .icon-btn.danger:hover {
    background: rgba(255, 51, 51, 0.2);
}

.term-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    color: #0f0;
    font-size: 13px;
    line-height: 1.5;
    background: transparent;
}

.term-line {
    word-wrap: break-word;
    white-space: pre-wrap;
    margin-bottom: 2px;
}

.term-footer {
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(0, 255, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 12px;
}

.term-prompt {
    color: #0f0;
    font-weight: bold;
    font-size: 14px;
}

#term-input-field {
    flex: 1;
    background: transparent;
    border: none;
    color: #fff;
    font-family: 'Courier New', Courier, monospace;
    font-size: 14px;
    outline: none;
}

#term-input-field::placeholder {
    color: rgba(0, 255, 0, 0.3);
}

/* Custom Scrollbar for Terminal */
.term-body::-webkit-scrollbar {
    width: 8px;
}
.term-body::-webkit-scrollbar-track {
    background: transparent;
}
.term-body::-webkit-scrollbar-thumb {
    background: rgba(0, 255, 0, 0.3);
    border-radius: 4px;
}
