.balikovna-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.balikovna-popup {
    background: #fff;
    width: 90%;
    max-width: 900px;
    height: 80%;
    max-height: 600px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.balikovna-close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 10px;
    background: #dc3545;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.balikovna-widget-button-wrapper {
    z-index: 1000; /* Ensure it appears above other elements */
}

.form-row.balikovna-widget.blocks {
    display: flex;
    align-items: center;
    gap: 10px;
}

.balikovna-widget-button-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.balikovna-widget-button-logo {
    width: 24px;
    height: 24px;
    vertical-align: middle;
}

.balikovna-select-pickup-button {
    padding: 8px 15px;
    background: #ff6200; /* Orange color from the screenshot */
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
}

.balikovna-select-pickup-button:hover {
    background: #e55a00; /* Slightly darker orange on hover */
}

.balikovna-warning-message {
    display: none; /* Hidden by default */
    align-items: center;
    gap: 5px;
    margin-left: 10px;
}

.balikovna-warning-icon {
    display: inline-block;
    width: 14px;
    height: 14px;
    background: #dc3545; /* Red background for the icon */
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 14px;
    font-size: 10px;
    font-weight: bold;
}

.balikovna-warning-text {
    color: #dc3545; /* Red color for the text */
    font-size: 14px;
}

/* Styling for the pickup point section on the order received page */
.woocommerce-balikovna-details {
    margin-bottom: 40px;
    padding: 15px;
    background-color: #f8f8f8;
    border-radius: 4px;
    border-left: 3px solid #ff6200;
}

.woocommerce-balikovna-details h2 {
    margin-top: 0;
    color: #333;
}

.balikovna-details p {
    margin: 5px 0;
}