/* CyborgShell - Chrome 40 Compatible CSS */

/* Basic body setup */
body { 
    background: blue;
    color: yellow;
    font-family: monospace;
    font-size: 16px;
    height: 100%;
    margin: 0;
    overflow: hidden;
    padding: 0;
    position: fixed;
    width: 100%;
}

body > div:first-child {
    height: 100%;
    margin: 0;
    padding: 10px;
}

/* Horizontal rules */
hr { 
    border: 0;
    border-top: 1px solid yellow;
    margin: 0;
}

hr:first-of-type {
    margin-bottom: 10px;
    margin-top: 0;
}

hr:last-of-type {
    bottom: 50px;
    left: 0;
    margin: 0;
    position: fixed;
    right: 0;
    width: 100%;
}

/* Selection */
::selection { 
    background-color: #FFD700; 
    color: #000; 
}

::-moz-selection {
    background-color: #FFD700;
    color: #000;
}

/* Links */
a { 
    color: cyan;
    font-family: monospace;
    font-size: 16px;
    font-weight: bold;
    text-decoration: underline;
}

/* Drag and drop highlight */
.dragover-highlight { 
    background-color: grey;
}

/* Command input */
.gs-clicommand { 
    background: blue;
    border: none;
    color: yellow;
    font-family: monospace;
    font-size: 16px;
    font-weight: bold;
    outline: none;
    width: 100%;
}

/* Main container - NOW WITH TOP SPACING FOR HEADER */
.gs-clicontainer { 
    bottom: 50px;
    left: 0;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 5px 10px;
    position: fixed;
    right: 0;
    top: 40px;  /* Space for header - CHANGED FROM 0 */
}

/* Content wrapper */
.gs-clicontent { 
    padding: 5px 0;
    width: 100%;
}

/* Desktop layout - WITH TOP SPACING */
.gs-clidesktop { 
    bottom: 50px;
    left: 0;
    position: fixed;
    right: 0;
    top: 40px;  /* Space for header - CHANGED FROM 0 */
}

/* OCR container (hidden) */
.gs-ocr-container { 
    display: none;
}

/* Output area */
.gs-clioutput { 
    color: yellow;
    font-family: monospace;
    font-size: 16px;
    font-weight: bold;
    white-space: pre-wrap;
    word-wrap: break-word;
}

/* Taskbar (command line area) */
.gs-clitaskbar { 
    background: blue;
    bottom: 0;
    left: 0;
    padding: 5px 10px;
    position: fixed;
    right: 0;
}

/* RTL support */
.rtli { 
    text-align: right;
}

.rtlo { 
    direction: rtl;
    unicode-bidi: bidi-override;
}