/* Styling for Documentation and Contact pages */

.dochead {
    font-size: 40px;
    font-weight: bold;
    color: var(--accent);
    margin-bottom: 20px;
}

.doc {
    font-size: 16px;
    color: white;
    background: var(--card);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #334155;
}

.con {
    font-size: 18px;
    color: white;
    margin-bottom: 10px;
}

.con strong {
    color: var(--accent);
}

/* Subtle animation for page text */
.container {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.name-entry {
    margin-bottom: 10px;
    animation: slideUp 0.2s ease-out;
}

.name-input {
    width: 100%;
    max-width: 400px;
    background: #1e293b;
    border: 1px solid #475569;
    color: white;
    padding: 12px;
    border-radius: 8px;
    font-size: 16px;
}

.button-group {
    margin-top: 20px;
}


.action-btn {
    background: white;
    color: black;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    margin-right: 10px;
    transition: transform 0.2s;
}

.submit-all {
    background: #22c55e;
    color: white;
}


.action-section {
    background: var(--card);
    border: 1px solid #334155;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
}

summary {
    padding: 20px;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--accent);
    cursor: pointer;
    list-style: none; /* Hides default arrow in some browsers */
    background: #111;
}

summary:hover {
    background: #1a1a1a;
}

.section-content {
    padding: 20px;
    border-top: 1px solid #334155;
}

.submit-remove {
    background: #ef4444 !important; /* Red for removal */
    color: white;
}

#final-list {
    width: 100%;
    height: 150px;
    background: #000;
    color: #00ff00;
    border: 1px solid #334155;
    border-radius: 8px;
    padding: 15px;
    font-family: monospace;
    margin-bottom: 10px;
}
