:root {
    --bg: #fff;
    --border1: #ccc;
    --border2: #ddd;
    --remove: #e74c3c;
    --button: #bbb;
    --save: #d6d6d6;
}

body {
    font-family: Arial, sans-serif;
    background-color: var(--bg);
}

#app  {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    border: 1px solid var(--border1);
    border-radius: 8px;
}

textarea {
    width: 100%;
    min-height: 45px;
    margin-bottom: 10px;
    resize: none;
}

#note-input {
    height: 75px;
}

.note {
    border: 1px solid var(--border2);
    padding: 10px;
    margin-bottom: 10px;
    position: relative;
    overflow-x: auto;
    min-height: 45px;
}

.note-actions {
    position: absolute;
    cursor: pointer;
    right: 7.5px;
    display: flex;
    color: white;
}

button {
    background-color: var(--button);
    opacity: .75;
    transition: 0.3s;
    border: none;
    border-radius: 5px;
    color: rgb(0, 0, 0);
}

button:hover {
    opacity: 1;
    transition: 0.3s;
}

.saveNote {
    width: 100%;
    background-color: var(--save);
    padding: 7.5px;
}

.remove-button {
    background-color: var(--remove);
    top: 7.5px;
    width: 23.4px;
    height: 23.4px;
    align-items: center;
    justify-content: center;
}
.edit-button {
    bottom: 7.5px;
    width: 23.4px;
    height: 23.4px;
    align-items: center;
    justify-content: center;
}

.gradient-div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 8px;
    display: inline-block;
    background-clip: text;
    color: transparent;
}   

