﻿#intro-textarea, #task-input {
    width: 100%;
    min-height: 80px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: vertical;
    font-family: 'Lato', sans-serif;
    font-size: 0.85rem;
    margin-top: 8px;
}

#intro-textarea {
    height: 150px;
    transition: height 0.5s ease-in-out;
}

    #intro-textarea.expanded {
        height: 425px;
    }

/* Boxed knapper i action-bar */
#task-c .boxed, #intro-c .boxed {
    display: inline-flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 2px;
    background-color: transparent;
    transition: all 0.5s ease;
}

#task-c .task-btn, #intro-c .info-btn {
    background: transparent;
    border: none;
    color: #2c3e50;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 12px;
    cursor: pointer;
    transition: background 0.4s ease;
}

#task-output {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0 1.5rem;
    margin: 0;
    background-color: #f9f9f9;
    border-left: 3px solid #e0e0e0;
    transition: max-height 0.6s ease-in-out, opacity 0.6s ease-in-out;
}

#task-output.has-content {
    opacity: 1;
    max-height: 500px;
    padding: 1.5rem;
    margin-top: 20px;
    overflow-y: auto !important;
}
