label, p{
    color: white;
    size: 80px;
    font-weight: bold;
}
.lologin{
    box-shadow: 20px 8px 12px #00000033;
    gap:20px;
    padding: 80px; 
    background-color: #3f7402; 
    border-radius: 20px;

    position:fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.dashboard{
    box-shadow: 20px 8px 12px #00000033;
    gap:20px;
    padding: 80px; 
    background-color: #3f7402; 
    border-radius: 20px;
    margin: 40px;
}
strong{
    font-weight: bold;
}

.nota-card, .add-nota-card {
    background: #FFFFFF; 
    color: #333; 
    font-family: 'Comic Sans MS', 'Chalkboard SE', 'Marker Felt', sans-serif;
    padding: 20px;
    min-height: 200px;
    box-shadow: 3px 3px 7px rgba(0,0,0,0.2);
    position: relative;
    border: 1px solid #ddd; 
    border-radius: 20px;

}

.add-nota-card {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    border-style: dashed; 
    transition: background-color 0.2s ease;
    border-radius: 20px;
}

.add-nota-card:hover {
    background-color: #f5f5f5; 
}

.nota-card h5 {
    font-weight: bold;
    color: black;
    font-size: 1.2rem;
    border-bottom: 2px solid black; 
    padding-bottom: 5px; 
}

.nota-card p {
    font-weight: normal;
    color: #333;
    font-size: 1rem;
}

.nota-card .dropdown .btn {
    border-radius: 20px;
    --bs-btn-bg: transparent;
    --bs-btn-border-color: transparent;
    --bs-btn-color: #000;
    --bs-btn-hover-bg: rgba(0,0,0,0.1);
}