.reseller-dashboard h2 {
    margin-top: 0;
}

.reseller-dashboard .reseller-orders {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.reseller-dashboard .reseller-orders th,
.reseller-dashboard .reseller-orders td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.reseller-dashboard .reseller-orders th {
    background-color: #f2f2f2;
}

.reseller-price {
    color: #e74c3c;
    font-weight: bold;
}

.reseller-balance {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.woocommerce-Price-amount.amount {
    font-weight: bold;
}

.reseller-checkout {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.reseller-checkout h2 {
    margin-top: 0;
    color: #333;
}

.reseller-checkout p {
    margin-bottom: 15px;
}

.reseller-checkout .button.alt {
    background-color: #4CAF50;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.reseller-checkout .button.alt:hover {
    background-color: #45a049;
}

.submit-button-wrapper {
    position: relative;
    display: inline-block;
}

.submit-button-wrapper .spinner {
    display: none;
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 2px solid rgba(0,0,0,0.3);
    border-radius: 50%;
    border-top-color: #000;
    animation: spin 1s ease-in-out infinite;
}

.submit-button-wrapper.loading .spinner {
    display: block;
}

.submit-button-wrapper.loading input[type="submit"] {
    opacity: 0.5;
}

@keyframes spin {
    to { transform: translateY(-50%) rotate(360deg); }
}

/* CC Email Field Styling */
.reseller-checkout .form-field {
    margin-bottom: 20px;
}

.reseller-checkout .form-field label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.reseller-checkout .form-field input[type="email"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.reseller-checkout .form-field .description {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
}
