form#arsc-custom-signup-form p {
    position: relative;
}
form#arsc-custom-signup-form p i {
    color: #333;
    position: absolute;
    right: 10px;
    top: 35px;
    font-size: 20px;
    cursor: pointer;
}

/* File: style.css */
.arsc-notice.error p {
    color: red;
}
/* Loading Popup Overlay */
#arsc-loading-overlay {
    position: fixed; /* Poori screen par aane ke liye */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75); /* Peeche halka sa kaala transparent background */
    z-index: 99999; /* Sab se upar dikhane ke liye */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
}

/* Loading Popup Box */
.arsc-loading-box {
    background: #ffffff;
    padding: 30px 40px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    max-width: 450px;
}

.arsc-loading-box h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 24px;
}

.arsc-loading-box p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.5;
}

/* CSS Spinner Animation */
.arsc-spinner {
    border: 6px solid #f3f3f3; /* Light grey */
    border-top: 6px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: arsc-spin 1.5s linear infinite;
    margin: 0 auto 25px auto; /* Center mein karne ke liye */
}

@keyframes arsc-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.woocommerce-account main#content {
    padding: 60px 0px;
}
.woocommerce-shop main#main {
    padding: 60px 0px;
}
nav.woocommerce-MyAccount-navigation ul {
    padding: 0px;
    list-style: none;
}
nav.woocommerce-MyAccount-navigation ul li a {
    background: #000;
    width: 100%;
    display: block;
    margin-bottom: 10px;
    padding: 10px 10px;
    text-decoration: none;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
}
nav.woocommerce-MyAccount-navigation ul li.is-active a {
    background: #ce061d !important;
}
.create-Btn input {
  border: 0px;
  background: #28609b;
  width: 100%;
  color: #fff;
  font-weight: bold;
}
#arsc-custom-signup-form input {
    background: #fff;
    color: #000;
    border-radius: 8px;
}
li.menu-item.menu-item-my-account a, li.menu-item.menu-item-logout a, li.menu-item.menu-item-login a, li.menu-item.menu-item-signup a {
    font-size: 15px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    background: #ce061d;
    padding: 5px 10px;
    border-radius: 5px;
}
form#arsc-custom-signup-form label {
    color: #fff !important;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 6px;
}
form#arsc-custom-signup-form  input[type="submit"] {
    background: #CDB77A !important;
    width: auto;
    font-weight: 500;
    border-radius: 5px;
    padding: 13px 20px;
}
.create-Btn {
    text-align: center;
    margin-top: 30px;
}
form h3 {
    font-size: 50px;
    font-family: 'Open Sans' !important;
    font-weight: 700;
    text-align: center;
    line-height: 1;
    margin-bottom: 60px;
}
form .input-Field {
    margin-bottom: 15px;
}
form .input-Field  label {
    color: #bf0a30;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 10px;
}
.theme-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

/* Styling for each theme card */
.theme-option {
    background-color: #fff;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}
a.preview-btn {
    text-decoration: none !important;
}
.theme-title {
    text-align: center;
    font-size: 1.5rem;
    color: #333;
    margin-top: 0;
    margin-bottom: 15px;
}

/* Styling for the image preview */
.theme-preview img {
    width: 100%;
    height: auto;
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* Container for the action buttons */
.theme-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 20px;
}

/* Common styles for both buttons */
.preview-btn,
.select-btn {
    padding: 12px 15px;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

/* Style for Preview Button */
.preview-btn {
    background-color: #b08d57; /* Gold color */
    color: #fff;
    text-decoration: none;
}

/* Style for Select Button (Label) */
.select-btn {
    background-color: #1e2a4c; /* Dark Blue color */
    color: #fff;
}

/* Change text content of the select button using data attributes */
.select-btn::before {
    content: attr(data-text-select);
}

/* Hide the actual radio button */
.theme-option input[type="radio"] {
    display: none;
}

/* --- INTERACTIVE STATE --- */

/* Style for when a theme is selected */
.theme-option input[type="radio"]:checked + .select-btn {
    background-color: #28a745; /* Green color for "Selected" */
    color: white;
    font-weight: bold;
}

/* Change the text to "Selected" when the radio is checked */
.theme-option input[type="radio"]:checked + .select-btn::before {
    content: attr(data-text-selected);
}

/* Hover effects for buttons */
.preview-btn:hover,
.select-btn:hover {
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .theme-grid {
        grid-template-columns: 1fr;
    }
}


    .form-container {
      border: 1px solid #aaa;
      border-radius: 5px;
      padding: 15px;
    }

    .form-container h3 {
      color: darkred;
      margin-bottom: 10px;
    }

    .checkbox-group {
      margin-bottom: 15px;
    }

    .section-header {
      font-weight: bold;
      color: #00274D;
      margin: 10px 0;
    }

    .section-header.expandable {
      display: flex;
      justify-content: space-between;
      cursor: pointer;
      color: #00274D;
    }

    .section-header span {
      font-weight: normal;
      color: gray;
    }

    .checkboxes {
      margin-left: 20px;
      margin-top: 5px;
      display: none;
    }

    .checkboxes input[type="checkbox"] {
      margin-right: 5px;
    }

    .checkboxes label {
      display: block;
      margin: 4px 0;
    }

    .static-options label {
      display: block;
      margin: 6px 0;
    }

    .checked {
      display: block;
    }



/* Popup Overlay */
.arsc-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9998;
}

/* Popup Container */
.arsc-popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  z-index: 9999;
  text-align: left;
  width: 100%;
  max-width: 800px;
}

.arsc-popup h2, .arsc-popup h3 {
  margin-top: 0;
  color: #bf0a30;
  font-size: 23px;
}

.arsc-popup p {
  color: #000;
  line-height: 1.6;
  font-size: 14px;
}
/* Popup Close Button */
.arsc-popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    font-weight: bold;
    color: #888;
    cursor: pointer;
}

.arsc-popup-close:hover {
    color: #000;
}

/* Popup Button */
.arsc-popup-button {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 25px;
    background-color: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.arsc-popup-button:hover {
    background-color: #005f8c;
}