/* Public CSS */
/* #uvt-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #23282d;
    color: #fff;
    padding: 15px 20px;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
} */
#uvt-sticky-bar {
    text-align: center;
}
#uvt-sticky-bar .uvt-timer {
    margin-right: 20px;
    margin-bottom: 5px;
    font-size: 16px;
}
#uvt-sticky-bar #uvt-countdown {
    font-weight: bold;
}
#uvt-sticky-bar button {
    padding: 8px 16px;
    font-size: 14px;
    cursor: pointer;
    border: none;
    border-radius: 4px;
    background-color: #0073aa;
    color: #fff;
    transition: background-color 0.2s;
}
#uvt-sticky-bar button:hover:not(:disabled) {
    background-color: #0085ba;
}
#uvt-sticky-bar button:disabled {
    background-color: #6c757d;
    cursor: not-allowed;
    opacity: 0.7;
}
#uvt-tracker-container {
    clear: both;
    padding: 30px 0;
    margin-top: 20px;
    border-top: 2px dashed #ddd;
    text-align: center;
}
#uvt-tracker-container .uvt-next-post-wrapper button,
#uvt-tracker-container .uvt-final-step button {
    font-size: 18px;
    padding: 10px 25px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    background-color: #2271b1;
    color: #fff;
    transition: background-color 0.2s;
}
#uvt-tracker-container .uvt-next-post-wrapper button:hover,
#uvt-tracker-container .uvt-final-step button:hover {
    background-color: #1e639a;
}
.uvt-final-step h3 {
    text-align: center;
    margin-bottom: 15px;
}
.uvt-final-step .uvt-key-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 400px;
    margin: 0 auto;
}
.uvt-final-step input[type="text"] {
    flex-grow: 1;
    padding: 10px;
    font-size: 16px;
    text-align: center;
    border: 1px solid #ccc;
    border-right: none;
    border-radius: 5px 0 0 5px;
    background-color: #f9f9f9;
}
.uvt-final-step #uvt-copy-btn {
    border-radius: 0 5px 5px 0;
    padding: 11px 20px;
    font-size: 16px;
}
.uvt-final-step #uvt-copy-message {
    margin-top: 10px;
    color: #46b450;
    font-weight: bold;
}
.uvt-duplicate-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    display: none;
}
.uvt-duplicate-popup.active {
    display: flex;
}
.uvt-popup-inner {
    padding: 30px;
    background: #222;
    border-radius: 10px;
    text-align: center;
    max-width: 400px;
    width: 90%;
}
.uvt-popup-inner p {
    font-size: 16px;
    margin: 0;
}
