@import url('Theme.css');

.custom-radius-start {
    border: 0.1rem solid var(--black-color);
    border-radius: 0.5rem 0 0 0.5rem;
}

.custom-radius-end {
    border: 0.1rem solid var(--black-color);
    border-radius: 0 0.5rem 0.5rem 0;
}

.custom-radius-center {
    border-top: 0.1rem solid var(--black-color);
    border-right: 0.1rem solid var(--white-color);
    border-bottom: 0.1rem solid var(--black-color);
    border-left: 0.1rem solid var(--black-color);
    border-radius: 0;
}

.custom-rounded-border {
    border-radius: 0.5rem 0.5rem 0.5rem 0.5rem;
}

.custom-radius-left {
    border: 1px solid var(--black-color);
    border-radius: 0.54vh 0 0 0.54vh;
}

.custom-radius-right {
    border: 0.2rem solid var(--black-color);
    border-radius: 0 0.54vh 0.54vh 0;
}

.custom-border-blue {
    border-color: 0.2rem solid var(--blue-primary-color);
} 
