.doogie-container {
    padding: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.doogie-header {
    margin-bottom: 30px;
    background: linear-gradient(180deg, #001f66 0%, #000c33 100%);
    border: 4px outset #66ccff;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.doogie-header img {
    height: 75px;
    width: auto;
}

.doogie-header-text {
    flex: 1;
}

.doogie-header h1 {
    color: #ffcc00;
    font-family: 'Arial Black', sans-serif;
    text-shadow: 3px 3px 0px #000;
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

.doogie-tagline {
    color: #bfe7ff;
    font-family: 'Courier New', monospace;
    font-style: italic;
    margin: 0;
}

/* The blue DOS-style screen - used for entries list and input */
.doogie-screen {
    background: #0000AA;
    border: 5px solid #888;
    box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.5);
    padding: 0;
    margin-bottom: 20px;
}

.doogie-titlebar {
    background: linear-gradient(180deg, #CCCCCC 0%, #888888 100%);
    border-bottom: 2px solid #000;
    padding: 5px 10px;
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    color: #000;
}

/* Entries list view content */
.doogie-content {
    background: #0000AA;
    padding: 20px;
    min-height: 400px;
    font-family: 'IBM VGA', 'Courier New', monospace;
    color: #FFFFFF;
    font-size: 13px;
    line-height: 1.45;
}

.doogie-entry {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #6666FF;
}

.doogie-entry:last-child {
    border-bottom: none;
}

.doogie-entry-meta {
    margin-bottom: 10px;
}

.doogie-author {
    color: #00FFFF;
    text-decoration: none;
    font-weight: bold;
}

.doogie-author:hover {
    color: #FFFFFF;
    text-decoration: underline;
}

.doogie-date {
    color: #FFFF00;
    font-weight: bold;
}

.doogie-entry-meta .doogie-date {
    margin-left: 10px;
}

.doogie-entry-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
}

.doogie-delete {
    color: #66ccff;
    font-weight: bold;
    text-decoration: none;
}

.doogie-delete:hover {
    color: #ffffff;
}

.doogie-body {
    white-space: pre-wrap;
}

.empty-state {
    text-align: center;
    padding: 40px;
    color: #6666FF;
}

#new-entry-screen {
    display: none;
}

/* ============================================
   NEW ENTRY FORM - Standard Spockify Styling
   ============================================ */

/* Instructions panel - standard Spockify panel */
.entry-instructions-panel {
    background: linear-gradient(180deg, #1a1a2e 0%, #0f0f1a 100%);
    border: 3px outset #444;
    padding: 20px;
    margin-bottom: 20px;
}

.entry-instructions-panel h3 {
    color: #ffcc00;
    font-family: 'Arial Black', sans-serif;
    text-transform: uppercase;
    margin: 0 0 15px 0;
    border-bottom: 2px solid #ff6600;
    padding-bottom: 8px;
}

.entry-instructions-panel p {
    color: #cccccc;
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 12px 0;
}

.entry-instructions-panel p:last-child {
    margin-bottom: 0;
}

/* Input area inside the doogie screen - just the textarea */
.doogie-input-area {
    padding: 20px;
}

.new-entry-textarea {
    width: 100%;
    background: #0000AA;
    color: #FFFFFF;
    border: none;
    font-family: 'IBM VGA', 'Courier New', monospace;
    font-size: 13px;
    line-height: 1.45;
    padding: 0;
    resize: vertical;
    min-height: 200px;
    outline: none;
}

.new-entry-textarea::placeholder {
    color: #6666FF;
}

/* Options panel - standard Spockify panel */
.entry-options-panel {
    background: linear-gradient(180deg, #1a1a2e 0%, #0f0f1a 100%);
    border: 3px outset #444;
    padding: 15px;
}

.entry-options-panel .form-group {
    margin-bottom: 12px;
}

.entry-options-panel .form-group > label {
    display: block;
    color: #00ffff;
    font-family: 'Arial Black', sans-serif;
    text-transform: uppercase;
    font-size: 12px;
    margin-bottom: 6px;
}

.entry-options-panel .visibility-options {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.entry-options-panel .radio-label {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #cccccc;
    font-family: 'Arial', sans-serif;
    font-size: 13px;
    cursor: pointer;
}

.entry-options-panel .radio-label input[type="radio"] {
    cursor: pointer;
}

.entry-options-panel .radio-label strong {
    color: #ffcc00;
}

.entry-options-panel .radio-label:hover {
    color: #ffffff;
}

.entry-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    padding-top: 10px;
    border-top: 1px solid #333;
}
