/* Admin Page Wrapper */
.arpmp-wrap {
    margin-top: 20px;
}

/* Tabs Navigation */
.arpmp-wrap .nav-tab-wrapper {
    margin-bottom: 20px;
}

/* Tab Content */
.arpmp-wrap .tab-content {
    display: none;
    background: #fff;
    padding: 20px;
    border: 1px solid #c3c4c7;
    border-top: none;
}
.arpmp-wrap .tab-content.active {
    display: block;
}

/* Progress Bar */
#arpmp-progress-container {
    margin-top: 20px;
}
.progress-bar-wrapper {
    width: 100%;
    background-color: #e0e0e0;
    border-radius: 4px;
    border: 1px solid #ccc;
    padding: 2px;
}
#arpmp-progress-bar {
    width: 0%;
    height: 24px;
    background-color: #0073aa; /* WordPress blue */
    border-radius: 2px;
    transition: width 0.3s ease-in-out;
    text-align: center;
    line-height: 24px;
    color: white;
    font-weight: bold;
}
#arpmp-progress-status {
    margin-top: 10px;
    font-size: 14px;
    font-style: italic;
    color: #555;
    text-align: center;
}