/* Styles for quiz generator */

body {
    text-align: center;
}

/* Disable textarea resizing */
textarea {
    resize: none;
}

/* Two-column layout */
.two_col {
    display: flex;
    width: 350px;
    margin: auto;
}
.column {
    flex: 50%;
}

/* More options button */
a#more-options {
    color: gray;
    font-style: italic;
    cursor: pointer;
    font-size: 12px;
}
a#more-options:hover {
    text-decoration: underline;
}
.collapsable {
    display: none;
}

/* Overridden modal styles */
.app-modal-content p {
    font-size: 0.8rem;
    margin: 30px 0;
}
.app-modal-content img {
    width: 90%;
    margin: 0 5%;
}
/* Modal next/previous buttons */
.app-modal-content a.modal-nav {
    position: absolute;
    background: none;
    border: 1px solid black;
    padding: 5px;
    font-size: 0.75rem;
    cursor: pointer;
    transition: 0.2s ease-in-out;
}
.app-modal-content a.modal-nav:hover {
transform: scale(1.1);
}
.app-modal-content a#previous-slide {
    bottom: 1rem;
    left: 2rem;
}
.app-modal-content a#next-slide {
    bottom: 1rem;
    right: 2rem;
}