.sub {
    text-align: right;
}

/* Floating Bug Button */
.bugImage {
    position: fixed;
    bottom: 20px;
    left: -20px;
    cursor: pointer;
    z-index: 1000;
    background: #fff;
    border: 2px solid var(--site-color);
    padding: 8px 10px 8px 30px;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-weight: bold;
    color: var(--site-color);
}

.bugImage:hover {
    transform: translateY(-3px);
    /* background: var(--site-color); */
    color: #fff;
}

.bugImage img {
    width: 28px;
    height: 28px;
}

/* Modal Overlay */
.openbugmodel {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    justify-content: center;
    align-items: flex-start;
    overflow: auto;
    padding: 20px;
}

/* Modal Box */
.bugContent {
    background: #fff;
    border-radius: 12px;
    width: 100%;
    max-width: 600px;
    margin: auto;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(-80px);
    opacity: 0;
    transition: all 0.4s ease-in-out;
}

.bugContent.show {
    transform: translateY(0);
    opacity: 1;
}

.bugContent .headerr {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #fff;
    padding: 15px;
    text-align: center;
    background-color: var(--site-color);
    border-radius: 12px 12px 0 0;
}

/* Form */
#bugReportForm {
    padding: 20px;
}

.bugContent label {
    display: block;
    margin: 10px 0 5px;
    font-weight: bold;
}

.bugContent select,
.bugContent textarea {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ddd;
    margin-bottom: 15px;
    font-size: 15px;
}

.bugContent textarea {
    min-height: 100px;
    resize: vertical;
}

.submitBtn {
    background: var(--site-color);
    color: #fff;
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}

.submitBtn:hover {
    background: #005bb5;
}

/* Close Button */
.closeBtn {
    position: absolute;
    top: -15px;
    right: -15px;
    background: #d32f2f;
    padding: 6px 14px;
    border: none;
    border: 2px solid;
    font-size: 14px;
    border-radius: 50px;
    cursor: pointer;
    color: #fff !important;
    transition: background 0.3s;
}

.closeBtn:hover {
    background: #b71c1c;
}

/* Success Popup */
#successPopup {
    position: fixed;
    top: 100px;
    right: 20px;
    background: #4caf50;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 16px;
    display: none;
    z-index: 10000;
    animation: fadeInOut 3s forwards;
}

@keyframes fadeInOut {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    10% {
        opacity: 1;
        transform: translateY(0);
    }

    90% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateY(-20px);
    }
}