/* Admin settings page specific styles */
.atheaico-settings-heading th {
    padding-bottom: 0 !important;
    padding-top: 2em !important;
}

/* Loading Bar Styles */
.atheaico-loading-bar-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    z-index: 999999;
    background-color: #ffffff;
    overflow: hidden;
}

.atheaico-loading-bar-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0073aa; /* WordPress blue */
    animation: atheaico-loading-animation 2s infinite linear;
}

@keyframes atheaico-loading-animation {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}