.unfzd-chat-landing {
    font-family: 'Arial', sans-serif;
    color: #333;
    padding: 20px;
    overflow: hidden;
    background-color: #f0f2f5;
}

.unfzd-hero {
    background: linear-gradient(135deg, #009688, #00796b);
    color: white;
    padding: 100px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.unfzd-hero-title {
    font-size: 0.5rem;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.unfzd-cta-button {
    background-color: #f9a825;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.unfzd-cta-button:hover {
    background-color: #c17900;
    transform: scale(1.05);
}

.unfzd-features, .unfzd-benefits {
    padding: 50px 20px;
    text-align: center;
    background-color: #ffffff;
    border-radius: 10px;
    margin-top: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.unfzd-benefits .benefit-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 20px;
    justify-content: center;
    margin-top: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.benefit-item h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #009688;
}

.benefit-item p {
    font-size: 1rem;
    color: #555;
}

.unfzd-features h2, .unfzd-benefits h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .benefit-list {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .unfzd-features h2, .unfzd-benefits h2 {
        font-size: 1.5rem;
    }
}

.feature-card {
    position: relative;
    padding: 30px 20px;
    text-align: center;
}

.feature-icon {
    font-size: 2.5rem;
    color: #009688;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.feature-card:hover .feature-icon {
    color: #00796b;
}

.feature-card h3 {
    margin-top: 10px;
    font-size: 1.25rem;
    font-weight: 600;
}

.feature-card p {
    margin-top: 10px;
    font-size: 1rem;
    color: #555;
}

.feature-details {
    font-size: 0.9rem;
    color: #666;
    margin-top: 15px;
    border-top: 1px solid #ddd;
    padding-top: 10px;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    background-color: #f9f9f9;
}

.feature-card:hover .feature-icon {
    color: #c17900;
}

@media (max-width: 768px) {
    .feature-card {
        width: 100%;
    }
}

.unfzd-cta {
    text-align: center;
    margin-top: 40px;
}

.unfzd-cta a {
    display: inline-block;
    margin-top: 20px;
    background-color: #009688;
    color: white;
    padding: 20px 40px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.unfzd-cta a:hover {
    background-color: #00796b;
    transform: scale(1.05);
}

/* General Styling */
.how-it-works {
  text-align: center;
  padding: 40px 20px;
}

.how-it-works h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: nowrap;
}

.step {
  display: flex;
  align-items: center;
  text-align: center;
  position: relative;
}

.step-content {
  background: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  min-width: 200px;
}

.step-number {
  width: 40px;
  height: 40px;
  background-color: #028476;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin: 0 auto 10px auto;
}

.step h3 {
  font-size: 18px;
  margin: 10px 0 5px;
}

.step p {
  font-size: 14px;
  color: #666;
}

/* Arrow Styling */
.arrow {
  width: 40px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow svg {
  width: 40px;
  height: 24px;
  fill: #028476;
}

.step:first-child + .arrow {
  display: none; /* No arrow before the first step */
}

.arrow:last-of-type {
  display: none; /* No arrow after the last step */
}

/* Responsive Design */
@media (max-width: 768px) {
  .steps {
    flex-wrap: wrap;
    gap: 30px;
  }

  .arrow {
    display: none;
  }
}

.wrap {
    font-family: 'Open Sans', sans-serif;
    color: #333;
}

.unfzd-title {
    font-size: 32px;
    color: #0073AA;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Tab Navigation Styles */
.nav-tab-wrapper {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.nav-tab {
    background-color: #f7f7f7;
    padding: 12px 20px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    transition: background-color 0.3s;
}

.nav-tab:hover {
    background-color: #0073AA;
    color: white;
}

.nav-tab-active {
    background-color: #0073AA;
    color: white;
}

/* Tab Content Styles */
.tab-content {
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    display: none;
    margin-top: 20px;
}

/* Section Header Styles */
.section-header {
    font-size: 26px;
    color: #333;
    font-weight: 700;
    margin-bottom: 15px;
    border-bottom: 2px solid #0073AA;
    padding-bottom: 10px;
}

.sub-section-header {
    font-size: 22px;
    color: #0073AA;
    font-weight: 600;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid #ddd;
}

/* Input Field Styles */
input[type="text"], input[type="email"] {
    padding: 10px;
    font-size: 16px;
    width: 100%;
    border-radius: 5px;
    border: 1px solid #ddd;
    margin-bottom: 10px;
}

/* Submit Button Styles */
.button-primary {
    background-color: #0073AA;
    color: white;
    border-radius: 5px;
    padding: 12px 20px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.button-primary:hover {
    background-color: #005177;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-tab-wrapper {
        flex-direction: column;
    }
}

    .unfzd-mobile-wrapper {
        display: flex;
        align-items: center; /* Ensures vertical alignment of both elements */
        justify-content: flex-start; /* Align items horizontally to the left */
    }

    #country_code {
        width: 80px; /* Set a consistent width */
        padding: 8px; 
        font-size: 14px;
        height: 36px; /* Set the height to match the input field */
        line-height: 1.5;
        margin-right: 8px;
        box-sizing: border-box; /* Ensure padding doesn't affect width */
    }

    #admin_mobile_number {
        width: 180px; /* Adjust the length of the input field */
        padding: 8px; 
        font-size: 14px;
        height: 36px; /* Ensure this height matches the country code */
        line-height: 1.5;
        box-sizing: border-box; /* Ensure padding doesn't affect width */
    }

 /* Adjust table layout */
#recovery-settings-table {
    width: 100%;
}

.recovery-row {
    display: flex;
    align-items: center;
    width: 100%;
}

.recovery-row td {
    padding: 8px 10px;
}

.recovery-row td select,
.recovery-row td input {
    width: 150px; /* Reduce width of select and input fields */
    margin-right: 10px;
}

.recovery-row td button {
    margin-right: 5px;
}

/* Make the buttons inline */
.recovery-row td {
    display: flex;
    align-items: center;
}

.recovery-row td button.add-row,
.recovery-row td button.delete-row {
    width: 30px; /* Adjust button width */
    height: 30px; /* Adjust button height */
    padding: 0;
    display: inline-block;
    text-align: center;
    line-height: 30px;
    font-size: 18px; /* Adjust size of icon */
    border: 1px solid #ddd;
    cursor: pointer;
}

.recovery-row td button.add-row {
    background-color: #4CAF50; /* Green background for "+" */
    color: white;
}

.recovery-row td button.delete-row {
    background-color: #f44336; /* Red background for trash icon */
    color: white;
    margin-left: 5px;
}

/* Optional: Add hover effects for buttons */
.recovery-row td button:hover {
    opacity: 0.8;
}

/* Container Styles */
.templates-tab {
    margin: 20px;
    font-family: Arial, sans-serif;
}

.templates-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.5em;
    margin-bottom: 20px;
}

.import-templates-button {
    background-color: #0073aa;
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 3px;
    transition: background-color 0.3s ease;
}

.import-templates-button:hover {
    background-color: #005177;
}

/* Card Container */
.templates-cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

/* Individual Card Styles */
.template-card {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 30%; /* Adjust for three cards in a row */
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.template-card h3,
.template-card p {
    margin: 10px 0;
    font-size: 14px;
}

.template-card h3 {
    color: #333;
    font-size: 16px;
}

.template-content p {
    font-size: 13px;
    color: #555;
}

/* Button Style */
.map-template-variables-button {
    background-color: #0073aa;
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 3px;
    margin-top: 15px;
    align-self: flex-start;
    transition: background-color 0.3s ease;
}

.map-template-variables-button:hover {
    background-color: #005177;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .template-card {
        width: 45%; /* Two cards per row for smaller screens */
    }
}

@media screen and (max-width: 480px) {
    .template-card {
        width: 100%; /* Full width for mobile */
    }

    .templates-heading {
        flex-direction: column;
        align-items: flex-start;
    }

    .import-templates-button {
        margin-top: 10px;
    }
}

/* Modal Styles */
.modal {
    display: none; 
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); 
    overflow: auto;
    padding-top: 60px;
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 900px;
    position: relative;
}

.close-modal {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 25px;
    font-family: Arial, sans-serif;
    cursor: pointer;
}

.close-modal:hover,
.close-modal:focus {
    color: black;
    text-decoration: none;
}

.modal-body {
    padding: 20px;
}

.template-details {
    margin-bottom: 20px;
}

.variable-row {
    margin-bottom: 15px;
}

.variable-row label {
    display: inline-block;
    width: 200px;
}

.variable-row select {
    width: 200px;
}

.save-mappings-button {
    margin-top: 20px;
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
}

.save-mappings-button:hover {
    background-color: #45a049;
}

.modern-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Arial', sans-serif;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.modern-table th, .modern-table td {
    padding: 12px 15px;
    border: 1px solid #ddd;
    text-align: left;
    font-size: 14px;
}

.modern-table th {
    background-color: #f4f4f4;
    color: #333;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modern-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.modern-table tr:hover {
    background-color: #f1f1f1;
}

.modern-table .status-abandoned {
    color: #fff;
    background-color: #e74c3c;
    padding: 5px 10px;
    border-radius: 3px;
}

.modern-table .status-recovered {
    color: #fff;
    background-color: #2ecc71;
    padding: 5px 10px;
    border-radius: 3px;
}

.modern-table .status-pending {
    color: #fff;
    background-color: #f39c12;
    padding: 5px 10px;
    border-radius: 3px;
}

.modern-table .action-buttons {
    display: flex;
    gap: 10px;
}

.modern-table .dropdown {
    padding: 6px 10px;
    border-radius: 4px;
    border: 1px solid #ddd;
    cursor: pointer;
    font-size: 14px;
}

.modern-table .button {
    padding: 6px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: bold;
}

.modern-table .button-primary {
    background-color: #007cba;
    color: #fff;
    border: none;
}

.modern-table .button-secondary {
    background-color: #ff5e57;
    color: #fff;
    border: none;
}

.modern-table .delete-entry-btn {
    background-color: #e74c3c;
    color: white;
    border: none;
    padding: 6px 12px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
}

.modern-table .delete-entry-btn:hover {
    background-color: #c0392b;
}

.modern-table .dropdown option {
    font-size: 14px;
}