/* Change fonts */
.pmpro_confirmation-message {
  font-family: 'Arial' !important;
  color: #2B3D4F;
}

/* Style buttons */
.pmpro_btn {
  background: #4299E1 !important;
  border-radius: 8px !important;
  padding: 12px 25px !important;
}

/* Add welcome message */
.pmpro_confirmation-header:before {
  content: "🎉 Welcome!";
  font-size: 2em;
  display: block;
  margin-bottom: 20px;
}
/* Modern PMPro Account Page Design */
.pmpro_account {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 20px;
  font-family: 'Segoe UI', sans-serif;
}

/* Header Section */
.pmpro_account-header {
  text-align: center;
  margin-bottom: 3rem;
}

.pmpro_account-header h2 {
  color: #2d3748;
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* Membership Status Card */
.pmpro_account-membership {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
}

.pmpro_account-membership h3 {
  color: #48bb78; /* Lime green accent */
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #48bb78;
  padding-bottom: 0.5rem;
}

/* Profile & Billing Sections */
.pmpro_account-profile,
.pmpro_account-billing {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.pmpro_account-profile h3,
.pmpro_account-billing h3 {
  color: #2d3748;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

/* Buttons & Links */
.pmpro_actions_nav {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 1rem;
  margin: 2rem 0;
}

.pmpro_actions_nav a {
  background: #48bb78; /* Lime green */
  color: white !important;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s;
  font-weight: 600;
}

.pmpro_actions_nav a:hover {
  background: #38a169;
  transform: translateY(-2px);
}

/* Form Fields */
.pmpro_form input[type="text"],
.pmpro_form input[type="email"],
.pmpro_form input[type="password"] {
  width: 100%;
  padding: 12px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  margin-bottom: 1rem;
  font-size: 16px;
}

.pmpro_form input:focus {
  border-color: #48bb78;
  box-shadow: 0 0 0 3px rgba(72, 187, 120, 0.1);
}

/* Membership History Table */
table.pmpro_invoice {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

table.pmpro_invoice th {
  background: #f7fafc;
  padding: 1rem;
  text-align: left;
  border-bottom: 2px solid #e2e8f0;
}

table.pmpro_invoice td {
  padding: 1rem;
  border-bottom: 1px solid #e2e8f0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .pmpro_account {
    padding: 10px;
  }
  
  .pmpro_actions_nav {
    flex-direction: column;
  }
  
  .pmpro_actions_nav a {
    width: 100%;
    text-align: center;
  }
}/* Add your CSS code here.

For example:
.example {
    color: red;
}

For brushing up on your CSS knowledge, check out http://www.w3schools.com/css/css_syntax.asp

End of comment */ 


/* General Styling for PMPRO Pages */
.pmpro_page {
    font-family: 'Arial', sans-serif;
    color: #000000;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Membership Levels Table Styling */
.pmpro_levels_table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.pmpro_levels_table th,
.pmpro_levels_table td {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.pmpro_levels_table th {
    background-color: #0073e6;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
}

.pmpro_levels_table tr:hover {
    background-color: #f5f5f5;
}

/* Membership Level Pricing Styling */
.pmpro_levels_table .pmpro_level-price {
    font-size: 24px;
    font-weight: bold;
    color: #0073e6;
}

.pmpro_levels_table .pmpro_level-name {
    font-size: 22px;
    font-weight: bold;
    color: #333;
}

/* Button Styling */
.pmpro_btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background-color: #0073e6;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pmpro_btn:hover {
    background-color: #005bb5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Form Styling */
.pmpro_form {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.pmpro_form input[type="text"],
.pmpro_form input[type="email"],
.pmpro_form input[type="password"] {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.pmpro_form input[type="text"]:focus,
.pmpro_form input[type="email"]:focus,
.pmpro_form input[type="password"]:focus {
    border-color: #0073e6;
    outline: none;
}

/* Account Page Styling */
.pmpro_account {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.pmpro_account h3 {
    font-size: 24px;
    color: #0073e6;
    margin-bottom: 20px;
}

.pmpro_account p {
    font-size: 16px;
    line-height: 1.6;
    margin: 10px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pmpro_levels_table th,
    .pmpro_levels_table td {
        padding: 15px;
    }

    .pmpro_levels_table .pmpro_level-price {
        font-size: 20px;
    }

    .pmpro_levels_table .pmpro_level-name {
        font-size: 18px;
    }

    .pmpro_btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}/* Add your CSS code here.

For example:
.example {
    color: red;
}

For brushing up on your CSS knowledge, check out http://www.w3schools.com/css/css_syntax.asp

End of comment */ 


