

/* Full Page Terminal Styles */

.terminal-page {
    display: flex;
    flex-direction: column;
    height: 100vh;
    margin: 0;
    padding: 0;
    overflow: hidden;
    box-sizing: border-box;
}

.terminal-page * {
    box-sizing: border-box;
}

.terminal-header {
    background: #2d2d2d;
    border-bottom: 1px solid #3e3e3e;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.terminal-header h1 {
    color: var(--accent-color, #d4d4d4);
    font-size: 16px;
    font-weight: bold;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.terminal-header h1 i {
    width: 18px;
    height: 18px;
}

.terminal-actions {
    display: flex;
    align-items: center;
}

.terminal-actions button {
    background: none;
    border: none;
    color: #d4d4d4;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 14px;
    transition: background-color 0.2s;
    margin-left: 8px;
    white-space: nowrap;
}

.terminal-actions button:hover {
    background: #3e3e3e;
}

#shortcuts-btn, #restart-btn {
    background: #555;
    padding: 6px 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

#shortcuts-btn i, #restart-btn i {
    width: 14px;
    height: 14px;
}

.brand-logo {
    color: #d4d4d4;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: color 0.2s;
}

.brand-logo:hover {
    color: var(--accent-color, #d4d4d4);
}

.shortcuts-tooltip {
    display: none;
    position: absolute;
    top: 50px;
    right: 10px;
    background: #2d2d2d;
    border: 1px solid #3e3e3e;
    border-radius: 6px;
    padding: 16px;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
    min-width: 300px;
}

.shortcuts-tooltip.show {
    display: block;
}

.shortcuts-content h4 {
    margin: 0 0 12px 0;
    color: #d4d4d4;
    font-size: 14px;
}

.shortcuts-grid {
    display: grid;
    gap: 6px;
}

.shortcuts-grid div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #cccccc;
}

kbd {
    background: #555;
    border: 1px solid #777;
    border-radius: 3px;
    padding: 2px 6px;
    font-size: 11px;
    font-family: monospace;
    color: #ffffff;
}

#terminal-container {
    flex: 1;
    padding: 8px;
    overflow: hidden;
}

#terminal-container .xterm {
    height: 100%;
}

#terminal-container .xterm-viewport {
    height: 100% !important;
    overflow: auto !important;
}


