.line{
    border-top: 2px solid var(--primary-color);
}
.line-2{
    border-width: 2px;
}
.line-3{
    border-width: 3px;
}


.text-right-vertical-line{
    position: relative;
}

.text-right-vertical-line::after{
    content: '|';
    position: absolute;
    top: 0;
    right: -0.4rem;
    width: 1px;
}

.text-right-vertical-line:last-child::after{
    content: '';
}

.button {
    flex: 1;
    padding: 0.8rem;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.button:active {
    opacity: 0.8;
}

.button.cancel {
    background-color: var(--third-color);
    color: #333;
}

.button.confirm {
    background-color: var(--secondary-color); 
    color: white;
}
