.quick-debug-log-container {
    position: relative;
    height: 450px;
    overflow-y: scroll;
    background: #1e1e1e;
    color: #f5f5f5;
    padding: 0;
    border: 1px solid #ccc;
    font-family: monospace;
    font-size: 12px;
    line-height: 1.4;
    margin-top: 20px;
}

.alert {
    white-space: pre-wrap;
}
.log-content {
    padding: 10px;
}
.scroll-btn {
    position: sticky;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, #6E59A5, #5b478f);
    color: #fff;
    border: none;
    border-radius: 1rem;
    width: 36px;
    height: 36px;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    opacity: 0.9;
    transition: all 0.2s ease-in-out;
    z-index: 20;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}
.quick-debug-log-viewer-filter button.active {
	background-color: #0073aa;
	color: white;
}
.scroll-btn:hover {
    opacity: 1;
    transform: translateX(-50%) scale(1.1);
    box-shadow: 0 0 0 2px #6E59A5;
}
#scroll-up-btn {
    top: 10px;
}
#scroll-down-btn {
    bottom: 10px;
}
.error-fatal {
    color: #ff4c4c;
    font-weight: bold;
}
.error-warning {
    color: #ffa500;
}
.error-notice {
    color: #ffff66;
}
.quick-debug-log-viewer-actions {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
}
.quick-debug-log-viewer-filter {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}
.quick-debug-log-viewer-search-container {
    position: relative;
}
.quick-debug-log-viewer-search-container input {
    padding: 6px 30px 6px 40px;
    width: 100%;
    max-width: 400px;
    margin: 1em 0 0;
}
.quick-debug-log-viewer-search-container span {
    position: absolute;
    top: 61%;
    left: 10px;
    transform: translateY(-50%);
    color: #6E59A5;
}

.wpsani-click-tracker-footer-bar {
    margin: 20px auto 40px auto;
    padding: 15px 20px;
    background: #f1f1f1;
    border-left: 4px solid #6E59A5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    border-radius: 4px;
    box-sizing: border-box;
}

.wpsani-footer-bar {
    margin: 30px auto 40px auto;
    padding: 16px 24px;
    background: linear-gradient(135deg, #f9f9f9, #f1f1f1);
    border-left: 4px solid #6E59A5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    animation: fade-in-footer 0.4s ease-in;
    transition: background 0.3s ease;
}

.wpsani-footer-bar .footer-cta {
    background-color: #6E59A5;
    color: #fff !important;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.2s ease, transform 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.wpsani-footer-bar a {
    color: #6E59A5;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.footer-cta:hover {
    background-color: #5a4b8c;
    transform: scale(1.03);
}