.ai-notes-section {
    display: flex;
    flex-direction: column;
    width: 50%;
    margin: 0 auto;
    margin-top: 60px;
}

.ai-notes-form {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
}

.ai-subject-select{
    height: 40px;
    margin: 20px 0px;
}

.new-subject-container-show {
    display: flex;
    flex-direction: column;
}


.new-subject-container-show input {
    margin-top: 20px;
    height: 40px;
    margin-bottom: 20px;
}



.ai-notes-input {
    height: 250px;
    width: 100%;
    padding: 10px;
}

.ai-submit-button {
    display: flex;
    justify-content: center;
    width: 30%;
    background-color: #7ed957;
    color: white;
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    cursor: pointer;
    border: none;
    margin: 30px auto;
    margin-bottom: 60px;
    text-align: center;
    height: 50px;
    padding: 10px;
}


/* Media Queries for smaller screens */
@media only screen and (max-width: 768px) {
    .ai-notes-section {
        width: 90%;
    }

}



