html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

.logo {
    max-width: 60%;
    display: flex;
    margin-left: 30px;
}

.pagination {
    Flex-wrap: wrap;
    gap: 5px
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    z-index: 9999;
    display: flex; /* use flex to center message horizontally + vertically */
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
}


.productTranslateItem {
    background-color: #fff;
    list-style: none;
    padding: 10px 10px 10px 5px;
    position: relative;
    margin-bottom: 10px;
    --bs-card-border-radius: 0.25rem;
    border-radius: var(--bs-card-border-radius);
}

    .productTranslateItem button {
        position: absolute;
        top: 10px;
        right: 10px;
    }


.findandreplaceSite {
    border: 1px solid #ccc;
    padding: 10px 20px;
    cursor: pointer;
}

    .findandreplaceSite:hover {
        background-color: #e1f5ff;
    }


.findandreplaceSite-header {
    padding: 10px;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    cursor: pointer;
}

    .findandreplaceSite-header:hover {
        background-color: #e9ecef;
    }

.findandreplaceSite-content {
    padding: 15px;
    border: 1px solid #dee2e6;
    border-top: none;
    border-radius: 0 0 4px 4px;
    background-color: #fff;
}

.cursor-pointer {
    cursor: pointer;
}

.findandreplaceSite-container {
    width: 100%;
}

.replacementList {
    width: 100%;
    display: flex;
    align-items: center;
    margin: 20px 0;
    flex-flow: wrap;
}

.replacementTag {
    border-radius: 3px;
    background-color: #f4f8fa;
    border: 1px solid #e6edf1;
    font-size: 12px;
    margin: 0 5px 5px 0;
    padding: 3px 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    position: relative;
}

    .replacementTag.selected {
        background-color: #000;
        color: #fff;
        border-color: #000;
    }