.adlhpti-container h1 {
    font-size: 28px;
}
h1.wp-heading-inline {
    height:50px;
    color:#2271b1;
}
.adlhpti-container {
    max-width: 750px;
    margin-top: 30px;
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    font-family: 'Segoe UI', sans-serif;
    animation: fadeIn 0.5s ease-in-out;
}
.adlhpti-tabs {
    display: flex;
    border-bottom: 2px solid #e2e8f0;
    margin-bottom: 20px;
}

.adlhpti-tab-button {
    padding: 12px 24px;
    cursor: pointer;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    color: #444;
}

.adlhpti-tab-button.active {
    border-color: #007cba;
    color: #007cba;
    background-color: #f0f8ff;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.adlhpti-tab-content {
    display: none;
    animation: slideFade 0.5s ease forwards;
}

.adlhpti-tab-content.active {
    display: block;
}

.adlhpti-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.adlhpti-toggle label {
    font-weight: 500;
    color: #333;
}

.adlhpti-toggle input[type="checkbox"] {
    transform: scale(1.3);
}

.adlhpti-pro-cta {
    background: linear-gradient(135deg, #007cba, #005a9e);
    color: #fff;
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    font-size: 16px;
    line-height: 1.5;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.adlhpti-pro-cta a {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: #fff;
    color: #007cba;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s ease;
}

.adlhpti-pro-cta a:hover {
    background: #f1f5f9;
}

@keyframes slideFade {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Reset some defaults */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  color: #222;
  margin-bottom: 10px;
}

/* Links */
a {
  color: #007bff;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Buttons */
.button {
  background-color: #007bff;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.button:hover {
  background-color: #0056b3;
}

/* Card style */
.card {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin: 15px 0;
}

/* Form Elements */
input[type="text"], input[type="email"], textarea {
  width: 100%;
  padding: 10px;
  margin: 8px 0 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* Responsive Grid */
.row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.col {
  flex: 1;
  min-width: 250px;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background-color: #eee;
  margin-top: 40px;
  font-size: 0.9rem;
}

.copy-btn {
    background-color: #2271b1;
    color: #fff;
    padding: 7px 11px;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.copy-btn:hover {
  background-color: #0056b3;
  box-shadow: 0 4px 8px rgba(0, 123, 255, 0.2);
}

.copy-btn:active {
  background-color: #004a9f;
  transform: scale(0.98);
}
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider-toggle {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 24px;
}

.slider-toggle:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .slider-toggle {
  background-color: #4CAF50;
}

input:checked + .slider-toggle:before {
  transform: translateX(26px);
}

