/* Reset WordPress admin styles for our page */
.toplevel_page_wallet-up #wpcontent {
    padding-left: 20px !important;
    padding-right: 20px !important;
}

.toplevel_page_wallet-up .wrap {
    margin: 0 !important;
    padding: 20px !important;
}

/* Wallet Up specific styles */
.wallet-up-admin-wrapper {
    margin: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    color: #333;
}

/* Container styling */
.wallet-up-container {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    padding: 20px;
    max-width: 1200px;
    margin: 2rem auto;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.5rem;
}

p, label {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

/* Form elements */
.wallet-up-container input[type="text"],
.wallet-up-container input[type="email"],
.wallet-up-container input[type="tel"],
.wallet-up-container select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.375rem;
    background-color: white;
    margin-bottom: 1rem;
}

/* Buttons */
.wallet-up-container button {
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    border: none;
    background-color: #3b82f6;
    color: white;
    cursor: pointer;
    transition: background-color 0.2s;
}

.wallet-up-container button:hover {
    background-color: #2563eb;
}

/* Tabs */
.wallet-up-container .tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.wallet-up-container .tab {
    flex-grow: 1;
    padding: 0.5rem 1rem;
    background: #f0f0f1;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}

.wallet-up-container .tab.active {
    background: #fff;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* Card styles */
.card {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    overflow: hidden;
}

/* Alert messages */
.alert {
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    color: white;
}

.alert-success {
    background: #dcfce7;
    color: #166534;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
}

/* Responsive adjustments */
@media screen and (max-width: 782px) {
    .wallet-up-admin-wrapper {
        margin: 10px;
    }
    
    .wallet-up-container input[type="text"],
    .wallet-up-container input[type="email"],
    .wallet-up-container input[type="tel"],
    .wallet-up-container select {
        font-size: 16px;
    }
}

/* Additional styles for icons or other elements as needed */