/*
 Theme Name: Hello Elementor Child
 Theme URI: https://example.com
 Description: Tema hijo de Hello Elementor
 Author: Tu nombre
 Author URI: https://example.com
 Template: hello-elementor
 Version: 1.0
*/

.nota {
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    white-space: pre-wrap;
    border: 1px solid #ddd;
    padding: 8px;
    resize: none;
    background-color: #fff;
    text-align: justify;
    font-family: 'Open Sans', sans-serif;
    font-size: 17px;
}

.nota[placeholder]:empty:before {
    content: attr(placeholder);
    color: #888;
}

.subrayado-amarillo {
    background-color: yellow;
}

.subrayado-verde {
    background-color: lightgreen;
}

.subrayado-azul {
    background-color: lightblue;
}

.subrayado-rosa {
    background-color: pink;
}

.color-btn {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: none;
    margin: 5px;
    cursor: pointer;
}

.botones-subrayado {
    position: sticky;
    top: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 5px;
    border-radius: 5px;
    z-index: 10;
}


