/* book-insight-style.css */

.book-insight-form {
    font-family: 'Roboto', sans-serif;
    font-size: 1.15rem;
    line-height: 1.7em;
}
.book-insight-form .form-group {
    margin-bottom: 1.5em;
}
.book-insight-form label {
    font-weight: 600;
    font-size: 1.1rem;
}
.form-control {
    width: 100%;
    font-size: 1.05rem;
    font-family: 'Roboto', sans-serif;
    line-height: 2.0em;
    border: 1px solid #a27c50;
    border-radius: 7px;
    padding: 10px;
    background-color: white;
    transition: box-shadow 0.2s ease;
    box-sizing: border-box;
}
.form-control:focus {
    outline: none;
    border-color: #a27c50;
    box-shadow: 0 0 0 3px rgba(193,161,119,0.25);
}
.form-control.title-input,
.form-control.duration-input {
    border: 1px solid #a27c50;
    border-radius: 7px;
    padding: 8px;
}
.form-control.note-textarea {
    background-image: linear-gradient(to bottom, rgba(210, 180, 140, 0.25) 1px, transparent 1px);
    background-size: 100% 2.1em;
    padding: 6px 10px;
    resize: vertical;
}
.submit-button {
    display: block;
    margin: 20px auto;
    padding: 12px 25px;
    background-color: #009571;
    color: white;
    font-size: 1.2rem;
    border: none;
    border-radius: 7px;
    cursor: pointer;
    text-align: center;
}
.submit-button:hover { background-color: #00593f; }
