/* Basic styles for the notes form */
textarea.ld-notes-textarea {
    width: 100%;
    height: 200px;
    margin-bottom: 10px;
  padding: 20px;
}

textarea#ld_student_note {
    padding: 20px;
    border-radius: 10px;
	font-size: 17px;
}

.save-note-btn.active {
    background-color: #4CAF50; /* Green when active */
}

/* Styles for the save button */
.save-note-btn {
    background-color: #007bff! important; /* Kék szín */
    min-width: 50% !important;
    color: white;
    font-size: 17px;
    padding: 10px 20px;
    border: none;
    border-radius: 50px !important;
    cursor: pointer;
    display: block;
    width: fit-content;
    margin: 0 auto; /* Középre igazítás */
    transition: background-color 0.3s ease; /* Sima színátmenet */
}

.save-note-btn.active {
    background-color: #0056b3; /* Sötétebb kék, amikor aktív */
}

.save-note-btn:hover {
    background-color: #009fff !important; /* Világoskék, egér ráhúzásakor */
}
