/* Terminal Wrapper - contains terminal and post-it side by side */
.terminal-wrapper {
    position: relative;
    width: 100%;
    padding: var(--spacing-md);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    z-index: 1;
}

/* Post-it Container - holds both post-its */
.postit-container {
    position: absolute;
    top: calc(var(--spacing-md) + 5px);
    left: calc(50% + 600px + var(--spacing-lg));
    width: 180px;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    align-items: stretch;
}

/* Commands Post-it Note Styles */
.commands-postit {
    width: 100%;
    background: #fffbcc;
    border: 1px solid #e6e3a8;
    box-shadow: 
        2px 2px 8px rgba(0, 0, 0, 0.3),
        inset 0 -30px 30px -15px rgba(0, 0, 0, 0.1);
    padding: var(--spacing-md);
    font-family: var(--font-mono);
    animation: postitFloat 3s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes postitFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.postit-header {
    font-weight: bold;
    font-size: 0.85rem;
    color: #333;
    margin-bottom: var(--spacing-sm);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: var(--spacing-xs);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.postit-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.postit-command {
    font-size: 0.75rem;
    color: #444;
    padding: 2px 4px;
    cursor: default;
    transition: all 0.2s ease;
    position: relative;
    padding-left: 16px;
}

.postit-command::before {
    content: '$';
    color: var(--text-secondary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.postit-command:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #000;
}

/* Responsive - adjust positioning and sizing, hide when not enough space */
@media (max-width: 1400px) {
    .postit-container {
        left: calc(50% + 550px + var(--spacing-md));
    }
}

/* Hide post-its when there's not enough space to display them next to terminal without overlapping */
@media (max-width: 1280px) {
    .postit-container {
        display: none;
    }
}

