/* Custom CSS for schmo.dev */

.post-content a:hover {
    font-weight: bold;
}

/* TODO: Consolidate single form style to use for entire site */
#contact-form-area {
    label {
        display: block;
        margin-bottom: 8px;
        font-weight: bold;
    }

    input, select, button {
        font-family: inherit;
        font-size: 16px;
        padding: 12px;
        width: 100%;
        box-sizing: border-box;
        border-radius: 4px;
        border: 1px solid #ccc;
        transition: border-color 0.3s, box-shadow 0.3s;
    }

    input:focus, select:focus {
        border-color: black;
        outline: none;
        box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
    }

    input[type="submit"] {
        background-color: var(--secondary);
        color: white;
        padding: 10px 20px;
        border-radius: 5px;
        cursor: pointer;
        font-size: 16px;
        margin: 10px 0;
    }

    input[type="submit"]:hover {
    background-color: var(--primary);
    }

    input[type="submit"]:active {
        background-color: black;
        transform: translateY(1px);
    }

    textarea {
        width: 100%;
        height: 150px;
        padding: 12px;
        box-sizing: border-box;
        
        font-family: inherit;
        font-size: 16px;
        line-height: 1.5;
        
        border: 1px solid #ccc;
        border-radius: 4px;
        resize: vertical;
        
        transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }

}

.debug-output {
    /* Positioning and Sizing */
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    max-height: 200px;
    width: 100%;
    overflow-y: auto; /* Adds a scrollbar if content exceeds max-height */
    z-index: 10000; /* Ensures it's above other content */

    /* Aesthetics */
    background-color: #333; /* Dark background */
    color: #0f0; /* Bright green text for visibility */
    padding: 10px;
    font-family: monospace; /* Monospaced font for code/logs */
    font-size: 14px;
    border-top: 2px solid #ff0000; /* Red border for attention */
    box-sizing: border-box; /* Ensures padding/border are included in the width */
}
