/* Result container and output styles */
.result-container {
    position: relative;
    margin-top: 20px;
    padding: 20px;
    background-color: #fdfdfd;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    min-height: 100px;
}

#result-buttons {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

#result-buttons button {
    padding: 8px 12px;
    font-size: 0.9rem;
    font-family: 'Lato', sans-serif;
    font-weight: bold;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#copy-btn {
    background-color: var(--primary-color);
}

#save-btn {
    background-color: #5cb85c;
}

#save-btn:hover {
    background-color: #4cae4c;
}

#save-btn:disabled {
    background-color: var(--secondary-color);
    cursor: not-allowed;
}

pre#script-output {
    white-space: pre-wrap;
    word-wrap: break-word;
    font-family: 'Courier New', Courier, monospace;
    font-size: 1rem;
    line-height: 1.5;
    background-color: transparent;
    padding: 0;
    margin: 0;
}