/* General styling */
.wpuv-container {
    display: flex;
    justify-content: space-between;
    gap: 20px; 
    font-family: 'Inter', sans-serif; 
    font-size: 14px;
    color: #333; 
    line-height: 1.6;
}
.wpuv-main-content {
    flex-grow: 1; 
}
.wpuv-container,
.wpuv-container p{
    font-size: 13px;
}
.wpuv-wrap {
    max-width: 90%;
    margin: 10px 20px 0 2px;
}
#wpuv-list-text{
    background: #fff;
    padding: 5px 20px 20px 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.wpuv-main-content .wpuv-wordpress-core-updates,
.wpuv-main-content .wpuv-plugin-updates,
.wpuv-main-content .wpuv-theme-updates{
    padding: 10px;
    border-radius: 10px;
    margin: 15px 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.wpuv-main-content .wpuv-wordpress-core-updates{
    background: #eef5ff;
}
.wpuv-main-content .wpuv-plugin-updates{
    background: #f8f0fc;
}
.wpuv-main-content .wpuv-theme-updates{
    background: #f4f8e8;
}
/* Section headers */
.wpuv-wrap h1{
    font-family: 'Inter', sans-serif;
    font-weight: normal;
    font-size: 22px;
    display: inline-block;
    margin: 0;
    padding: 9px 0 15px;
    line-height: 1.3;
}
.wpuv-wrap .wpuv-heading-h2{
    color: #0073aa;
    font-size: 18px;
    margin: 10px 0;
    font-weight: 600;
}
.wpuv-wrap .wpuv-heading-h3{
    color: #0073aa;
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 600;
}
.wpuv-list {
    list-style: none;
    padding-left: 0;
}
.wpuv-list li {
    margin: 5px 0;
    padding: 10px;
    border-left: 4px solid #0073aa;
    border-radius: 4px;
}
.wpuv-wrap .update-available strong{
    color: #d54e21;
    font-weight: bold;
}
.wpuv-wrap .up-to-date {
    color: #46b450;
}
.wpuv-notice-container {
    display: flex;
    font-family: 'Inter', sans-serif;
    align-items: center; 
    gap: 15px; 
    margin: 0 0 15px 0;
}
.wpuv-notice p {
    margin: 0;
}
.wpuv-notice {
    background: #fef3c7; 
    color: #7a4100;
    padding: 12px 15px;
    border-left: 4px solid #d54e21;
    border-radius: 5px;
    font-size: 14px;
    flex: 1; 
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
#copy-to-clipboard {
    background: #007cba; 
    color: #fff;
    border: none;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: normal;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    display: inline-flex;
    align-items: center;
    min-width: 150px;
    gap: 6px;
    justify-content: center;
}
#copy-to-clipboard:hover {
    background: #005a8e;
    transform: scale(1.05);
}

#copy-to-clipboard:active {
    transform: scale(0.95);
}

#copy-to-clipboard.success {
    background: #28a745; 
}
.wpuv-wrap #scroll-to-top {
    background: #007cba;
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 10px 18px;
    border-radius: 6px;
    font-size: 14px;
    transition: background 0.3s ease;
    display: block;
    margin: 12px auto 0;
}
.wpuv-wrap #scroll-to-top:hover {
    background: #005d85;
}
.wpuv-settings-box {
    width: 500px; 
    background: #f9f9f9; 
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 40px;
    height: fit-content;
    overflow-y: auto; 
    border-left: 4px solid #007cba; 
    animation: fadeIn 0.3s ease-in-out;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
.wpuv-settings input[type="checkbox"] {
    accent-color: #007cba;
    transition: all 0.2s ease-in-out;
}
.wpuv-settings input[type="checkbox"]:hover {
    cursor: pointer;
    transform: scale(1.05);
    transition: 0.2s ease-in-out;
}
.wpuv-settings label {
    display: flex;
    align-items: center;
    font-size: 13px;
    margin-bottom: 10px;
    cursor: pointer;
    font-weight: normal;
}
.wpuv-settings input[type="checkbox"] {
    margin-right: 8px;
    transform: scale(1.2);
}
.wpuv-settings .button-primary {
    background-color: #007cba;
    border: none;
    padding: 4px 16px;
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}
.wpuv-settings .button-primary:hover {
    background-color: #005f87;
}
.copy-toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 12px 18px;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    background-color: #28a745;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}
.copy-toast.error {
    background-color: #dc3545;
}
.fade-out {
    opacity: 0;
}
@media screen and (max-width: 1024px) {
    .wpuv-container {
        flex-direction: column;
    }
    .wpuv-settings-box {
        width: 100%;
        max-width: 400px; 
        position: relative; 
        top: unset;
        border-left: none; 
        box-shadow: none; 
        padding: 15px;
        margin-top: 20px;
    }
    #copy-to-clipboard {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}
