/*删除底部 Thank you for creating with WordPress.*/
#footer-left {
    display: none !important;
}

/* NHDropshipping Settings Page Styles */
.nhdropshipping-store {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 24px;
    box-sizing: border-box;
}

.nhdropshipping-content {
    text-align: center;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    max-width: 600px;
    width: 100%;
}

.nhdropshipping-title {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
}

.nhdropshipping-description {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
}

.nhdropshipping-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #8e44ad;
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.2s ease;
    cursor: pointer;
    border: none;
    outline: none;
}

.nhdropshipping-button:hover {
    background-color: #7e3fa3;
}

.nhdropshipping-button.loading {
    position: relative;
    color: transparent;
    pointer-events: none;
}

.nhdropshipping-button.loading::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 20px;
    margin-left: -10px;
    margin-top: -10px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-indicator {
    display: none;
    margin-top: 15px;
    color: #555;
}

/* Store Connected Page Styles */
.nhdropshipping-store.connected {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f0f0f0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    z-index: 9999;
}

.nhdropshipping-store.connected .nhdropshipping-content {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}

.nhdropshipping-store.connected .nhdropshipping-button:hover {
    font-size: 20px;
}
