.entry {
    font-family: 'Monaco', monospace;
    margin: 5px;
    border-bottom: 1px solid darkgray;    
    display: flex;
    flex-direction: row;
    align-items:start;
    gap: 2px;
}

.entry--deleted {
    overflow: hidden;
}

.entry__btn {
    background-color: white;
    border: none;
    border-radius: 4px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 25px 25px;    
    cursor: pointer;
    width: 45px;
    height: 45px;    
}

.entry__btn:hover {
    background-color: rgb(179, 177, 196);    
}

.entry__btn--delete {
    background-image: url('delete.svg');
}

.entry__btn--copy {
    background-image: url('copy.svg');
}

.entry__btn--repeat {
    background-image: url('repeat.svg');
}

.entry__content {
    margin-top: 10px;
    flex: 1;
    text-align: right;
    align-self: flex-end;
    display: flex;
    flex-direction: column;
}

.entry__row {
    margin-bottom: 6px;
}

.entry__suit {
    margin-right: 15px;
}

.entry__suit--clubs {
    color: black;
}

.entry__suit--diamonds {
    color: red;
}

.entry__suit--hearts {
    color: red;
}

.entry__suit--spades {
    color: black;
}

.entry__plain-text {
    font-family: 'Courier New', Courier, monospace;
}

.entry__error-text {
    font-family: 'Courier New', Courier, monospace;
    color: red;
}

.entry__type {
    font-family: Arial, Helvetica, sans-serif;
    color: rgb(98, 94, 94);
    font-size: 8px;
    text-decoration: underline;
    display: flex;
    flex-direction: column;
}

.scroll {
    display: flex;
    flex-direction: column;
}

.scroll__btn {
    background-color: white;
    border: none;
    border-radius: 4px;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    width: 20px;
    height: 40px;
}

.scroll__btn:hover {
    background-color: rgb(179, 177, 196);    
}

.scroll__btn--down {
    background-image: url('down.svg');
}

.scroll__btn--up {
    background-image: url('up.svg');
}