/* Notes Styles */
.notes-textarea {
    width: 100%;
    height: calc(100% - 80px);
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: white;
    font-family: 'Roboto', sans-serif;
    padding: 15px;
    resize: none;
    outline: none;
    font-size: 16px;
}

.notes-textarea:focus {
    border-color: #4285f4;
    box-shadow: 0 0 0 2px rgba(66, 133, 244, 0.2);
}

.notes-textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}
