/* Loading Indicator Styles */
.loading-indicator {
  text-align: center;
  padding: 20px;
  font-size: 18px;
  color: #007bff;
  /* Change this to match your site's color theme */ }

.loading-indicator::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 24px;
  height: 24px;
  border: 3px solid #007bff;
  /* Border color */
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite; }

/* Error Message Styles */
.error-message {
  text-align: center;
  padding: 20px;
  font-size: 18px;
  color: #dc3545;
  /* Typically red to indicate error */ }

/* Keyframes for loading indicator animation */
@keyframes spin {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }
.dropdown-menu {
  position: absolute;
  will-change: transform;
  top: 0;
  left: 0;
  transform: translate3d(0, 38px, 0); }

#fbPageSearch {
  /* Style for the search input */
  width: 100%;
  padding: 10px;
  margin: 10px 0; }

#suggestion-box {
  /* Style for the suggestion box */
  border: 1px solid #ddd;
  background: #fff;
  position: absolute;
  z-index: 1000;
  width: calc(100% - 20px);
  display: none;
  /* Hide initially */ }

#suggestion-box div {
  /* Style for each suggestion */
  padding: 10px;
  border-bottom: 1px solid #ddd;
  cursor: pointer; }

#suggestion-box div:hover {
  /* Style for hovering over a suggestion */
  background-color: #f0f0f0; }

/* Loader and status message styles */
.loader-container {
  position: fixed;
  /* Or absolute, depending on requirement */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: none;
  /* Hidden by default */
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  /* Semi-transparent background */
  color: white;
  font-size: 16px;
  z-index: 1000;
  /* Make sure it's on top of other content */ }

.loader {
  border: 5px solid #f3f3f3;
  /* Light grey background */
  border-top: 5px solid #3498db;
  /* Blue color */
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 2s linear infinite; }

@keyframes spin {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }
.loader-text {
  margin-left: 20px; }

/* Custom styles */
body.lp {
  padding-top: 80px;
  font-family: 'Roboto', sans-serif;
  /* Main content font */
  color: #4A4A4A;
  /* Updated text color for better readability */ }

/* Navbar customization */
.navbar-custom {
  background-color: rgba(245, 245, 255, 0.8);
  /* Light purplish white with slight transparency */
  backdrop-filter: blur(10px);
  /* Blur effect */
  border-bottom: 1px solid rgba(110, 70, 255, 0.2);
  /* Subtle purple border under the navbar */ }

.navbar-brand, .nav-link {
  font-family: 'Poppins', sans-serif;
  /* Poppins font for navbar elements */
  font-weight: 600;
  /* Making the elements bolder */
  color: #6E46FF;
  /* Soft purple for text */ }

.nav-link:hover, .nav-link:focus {
  color: #5A2ECC;
  /* Darker purple on hover/focus for better user feedback */
  text-decoration: none;
  /* Removes underline on hover/focus */ }

.try-free-btn, .btn {
  background-color: #6E46FF !important;
  /* Soft purple background */
  border-color: #5A2ECC !important;
  /* Slightly darker purple border for depth */
  color: white !important; }

.btn:hover, .btn:focus {
  background-color: #5A2ECC !important;
  /* Darker purple for hover/focus states */
  border-color: #4A3EB2 !important;
  /* Even darker purple for border on hover/focus */ }

.navbar-brand svg {
  margin-right: 5px;
  /* Adds a small space between the logo and the text */
  vertical-align: middle;
  /* Centers the logo with the text vertically */ }

.btn-transparent-blur {
  background: rgba(90, 46, 204, 0.16) !important;
  /* Light white transparent background */
  backdrop-filter: blur(5px) !important;
  /* Blur effect on the background */
  border: 1px solid rgba(90, 46, 204, 0.26) !important;
  /* Slightly visible white border */
  color: #5A2ECC !important;
  /* White text color */
  opacity: 0.6; }
  .btn-transparent-blur:hover {
    opacity: 1;
    color: whitesmoke !important; }
  .btn-transparent-blur:active, .btn-transparent-blur:focus {
    opacity: 1;
    color: whitesmoke !important; }

.btn-transparent-blur.active {
  opacity: 1;
  color: whitesmoke !important;
  background-color: #5A2ECC !important; }

#google-prompt-container {
  position: fixed;
  /* Position it relative to the viewport */
  top: 100px;
  /* 20px from the top */
  right: 20px;
  /* 20px from the right */
  /* You can adjust top, right, bottom, left to position as needed */
  z-index: 1000;
  /* Ensure it's on top of other elements */ }

.registration-form-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 50px;
  background: linear-gradient(to right, #4A4A4A, #6E46FF); }
  .registration-form-container .registration-form {
    padding: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 450px; }
    .registration-form-container .registration-form h2 {
      color: #5A2ECC;
      margin-bottom: 10px; }
    .registration-form-container .registration-form .intro-text {
      color: #555;
      margin-bottom: 20px;
      font-size: 1.1rem; }
    .registration-form-container .registration-form .form-group {
      position: relative;
      margin-bottom: 20px; }
      .registration-form-container .registration-form .form-group .icon {
        position: absolute;
        left: 10px;
        top: 41px;
        color: #6E46FF;
        font-size: 20px; }
      .registration-form-container .registration-form .form-group label {
        display: block;
        color: #333;
        margin-bottom: 5px; }
      .registration-form-container .registration-form .form-group input {
        width: 100%;
        padding: 10px 10px 10px 40px;
        border: 1px solid #ccc;
        border-radius: 5px;
        box-sizing: border-box; }
    .registration-form-container .registration-form .checkbox-group {
      display: flex;
      align-items: center; }
      .registration-form-container .registration-form .checkbox-group input[type="checkbox"] {
        margin-right: 10px; }
      .registration-form-container .registration-form .checkbox-group label {
        margin: 0;
        font-size: 0.9rem; }
    .registration-form-container .registration-form .credit-card-note {
      color: #666;
      margin-top: 20px;
      font-size: 0.9rem; }
    .registration-form-container .registration-form .btn {
      width: 100%;
      padding: 12px;
      background-color: #6E46FF;
      color: white;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      transition: background-color 0.3s; }
      .registration-form-container .registration-form .btn:hover {
        background-color: #5A2ECC; }

@media (max-width: 992px) {
  .registration-form-container .registration-form {
    padding: 20px; } }
.jumbotron {
  position: relative;
  background: linear-gradient(to right, rgba(220, 208, 255, 0.7) 0%, rgba(255, 228, 241, 0.9) 100%);
  color: #333;
  padding: 20px;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: -25px; }

.jumbotron video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1; }

.jumbotron .text-center {
  z-index: 1;
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center; }

.jumbotron h1 {
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 20px; }

.jumbotron p.lead {
  max-width: 600px;
  margin-bottom: 25px; }

.jumbotron .input-group {
  width: 100%;
  max-width: 550px; }

.jumbotron .input-group .form-control,
.jumbotron .input-group .btn {
  height: 50px;
  font-size: 16px;
  font-weight: bold; }

.jumbotron .input-group .form-control {
  border: 2px solid #6E46FF;
  color: black; }

.jumbotron .input-group .btn {
  background-color: #6E46FF;
  color: white;
  border: 2px solid #6E46FF; }

.jumbotron .input-group .form-control:focus,
.jumbotron .input-group .form-control:focus + .btn.email-button {
  box-shadow: 0 0 8px rgba(110, 70, 255, 0.8);
  outline: none; }

@media (max-width: 768px) {
  .jumbotron .input-group {
    flex-direction: column; }

  .jumbotron .input-group .form-control {
    width: 100%;
    border-radius: 5px 5px 5px 5px !important;
    margin-bottom: 10px; }

  .jumbotron .input-group .btn {
    width: 100%;
    border-radius: 5px 5px 5px 5px !important; } }
.how-it-works {
  background: linear-gradient(to bottom, rgba(245, 245, 255, 0.9) 0%, rgba(255, 255, 255, 0.9) 100%);
  text-align: center;
  padding: 50px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: black; }
  .how-it-works .row {
    width: 100%;
    display: flex;
    justify-content: space-around; }
  .how-it-works .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
    display: flex;
    justify-content: center;
    position: relative;
    padding: 0 15px; }
    .how-it-works .col-md-3 .step-box {
      position: relative;
      padding: 20px;
      margin-right: 15px;
      background: rgba(255, 255, 255, 0.8);
      border: 1px solid #beacff;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      width: 100%;
      text-align: center; }
    .how-it-works .col-md-3.has-arrow .step-box::after {
      content: '\f061';
      font-family: 'Font Awesome 5 Free';
      font-weight: 900;
      position: absolute;
      right: -35px;
      top: 50%;
      transform: translateY(-50%);
      color: rgba(110, 70, 255, 0.6);
      font-size: 24px;
      z-index: 10; }
  .how-it-works h2 {
    margin-bottom: 20px; }
  .how-it-works .fa-2x {
    color: #6E46FF;
    margin-bottom: 10px; }

@media (max-width: 992px) {
  .how-it-works .row {
    flex-direction: column;
    margin: auto; }
  .how-it-works .col-md-3 {
    max-width: 100%;
    padding: 0 10px; }
    .how-it-works .col-md-3 .step-box {
      margin-right: 0;
      margin-bottom: 15px; }
      .how-it-works .col-md-3 .step-box::after {
        display: none; } }
.pricing-container {
  text-align: center;
  padding: 40px 0;
  background: linear-gradient(to bottom, #f7f7f7, #e6e6e6);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* Centers vertically */ }

h2 {
  color: #333;
  margin-bottom: 30px; }

.pricing-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px; }

.plan {
  width: 300px;
  background: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 8px;
  padding: 20px;
  transition: transform 0.3s ease; }
  .plan:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); }
  .plan.highlight {
    background: #f4f4f9;
    border-color: #cccccc; }
  .plan h3 {
    color: #333;
    font-size: 24px;
    margin-bottom: 10px; }
  .plan .price {
    font-size: 28px;
    color: #555; }
    .plan .price span {
      font-weight: bold; }
  .plan .usd-price {
    font-size: 20px;
    /* Increased font size */
    color: #444;
    /* Darker for better visibility */
    margin: 10px 0;
    /* More space around the price for emphasis */
    font-weight: bold;
    /* Making the price bold */ }
  .plan .term {
    color: #999;
    margin-bottom: 20px; }
  .plan .features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px; }
    .plan .features li {
      margin-bottom: 10px;
      color: #666; }
  .plan .btn {
    background-color: #5a2ecc;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    width: 100%;
    text-transform: uppercase; }
    .plan .btn:hover {
      background-color: #6e46ff; }

@media (max-width: 992px) {
  .pricing-container .pricing-grid {
    flex-direction: column;
    align-items: center; } }
.site-footer {
  background: linear-gradient(to right, #6E46FF, #484848);
  color: #fff;
  text-align: center;
  padding: 60px 60px; }
  .site-footer.gray-gradient {
    background: linear-gradient(to right, #f7f7f7, #ffffff);
    color: #333; }
    .site-footer.gray-gradient h4, .site-footer.gray-gradient p, .site-footer.gray-gradient a {
      color: #333; }
    .site-footer.gray-gradient a {
      color: #6E46FF; }
      .site-footer.gray-gradient a:hover {
        color: #484848; }
    .site-footer.gray-gradient .footer-section h4 {
      color: #333; }
    .site-footer.gray-gradient .footer-bottom {
      border-top: 1px solid #ccc; }
  .site-footer .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: start;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto; }
    .site-footer .footer-content .footer-section {
      flex: 1;
      min-width: 200px;
      margin: 0 20px; }
      .site-footer .footer-content .footer-section h4 {
        font-size: 14px;
        text-transform: uppercase;
        margin-bottom: 15px; }
      .site-footer .footer-content .footer-section p, .site-footer .footer-content .footer-section a {
        font-size: 12px;
        text-decoration: none; }
      .site-footer .footer-content .footer-section ul {
        list-style: none;
        padding: 0; }
        .site-footer .footer-content .footer-section ul li {
          margin-bottom: 8px; }
        .site-footer .footer-content .footer-section ul a {
          transition: color 0.3s; }
          .site-footer .footer-content .footer-section ul a:hover {
            color: #333; }
          .site-footer .footer-content .footer-section ul a i {
            margin-right: 5px; }
  .site-footer .footer-bottom {
    margin-top: 25px;
    padding-top: 25px;
    font-size: 12px; }
  .site-footer .social-links {
    display: flex;
    justify-content: center; }
    .site-footer .social-links li {
      margin: 0 10px; }

@media (max-width: 992px) {
  .site-footer .footer-content {
    flex-direction: column;
    text-align: center; }
    .site-footer .footer-content .footer-section {
      margin: 10px 0; } }
@media (min-width: 768px) {
  .modal-custom .modal-dialog {
    max-width: 500px; } }
.modal-custom .modal-content {
  background-color: #fff;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.1); }
  .modal-custom .modal-content .modal-header {
    background-color: #6E46FF;
    color: #fff;
    padding: 0px 20px;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px; }
    .modal-custom .modal-content .modal-header .modal-title {
      font-weight: bold; }
    .modal-custom .modal-content .modal-header button.close {
      border: none;
      background: none;
      color: #fff;
      font-size: 1.5em;
      opacity: 0.9; }
      .modal-custom .modal-content .modal-header button.close:hover, .modal-custom .modal-content .modal-header button.close:focus {
        opacity: 1;
        color: #fff; }
      .modal-custom .modal-content .modal-header button.close::before {
        content: "\00d7";
        font-size: 1.5em; }
      .modal-custom .modal-content .modal-header button.close span {
        display: none; }
  .modal-custom .modal-content .modal-body {
    padding: 20px;
    line-height: 1.5;
    color: #666; }
  .modal-custom .modal-content .modal-footer {
    background-color: #f7f7f7;
    padding: 15px 20px;
    display: none; }

.cta-section {
  height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to right, #6E46FF, #484848);
  color: #fff;
  text-align: center;
  padding: 20px; }
  .cta-section .container {
    max-width: 600px; }
  .cta-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: bold;
    color: #fff; }
  .cta-section .lead {
    font-size: 1.2rem;
    margin-bottom: 25px; }
  .cta-section .input-group {
    width: 100%;
    max-width: 550px;
    margin: 0 auto 20px; }
    .cta-section .input-group .form-control {
      height: 50px;
      font-size: 16px;
      border-radius: 5px 0 0 5px;
      border: 2px solid #6E46FF; }
    .cta-section .input-group .btn {
      border-radius: 0 5px 5px 0;
      background-color: #6E46FF;
      color: white;
      font-size: 16px;
      font-weight: bold;
      border: 2px solid #6E46FF; }
      .cta-section .input-group .btn:hover {
        background-color: #5A2ECC; }
  .cta-section .text-muted {
    font-size: 0.9rem;
    color: #ccc; }

.set-password-page, .login-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: linear-gradient(to right, #6E46FF, #484848);
  /* Tomato red for weak password */
  /* Orange for medium strength */
  /* Lime green for strong password */ }
  .set-password-page .container, .login-page .container {
    max-width: 600px; }
  .set-password-page .registration-form-container, .login-page .registration-form-container {
    padding: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%; }
  .set-password-page .registration-form, .login-page .registration-form {
    width: 100%; }
    .set-password-page .registration-form h2, .login-page .registration-form h2 {
      color: #5A2ECC;
      margin-bottom: 10px; }
    .set-password-page .registration-form .intro-text, .login-page .registration-form .intro-text {
      color: #555;
      margin-bottom: 20px;
      font-size: 1.1rem; }
    .set-password-page .registration-form .form-group, .login-page .registration-form .form-group {
      margin-bottom: 20px; }
      .set-password-page .registration-form .form-group label, .login-page .registration-form .form-group label {
        display: block;
        color: #333;
        margin-bottom: 5px; }
      .set-password-page .registration-form .form-group input, .login-page .registration-form .form-group input {
        width: 100%;
        padding: 10px;
        padding-left: 35px;
        border: 1px solid #ccc;
        border-radius: 5px;
        box-sizing: border-box; }
    .set-password-page .registration-form .btn, .login-page .registration-form .btn {
      width: 100%;
      padding: 12px;
      background-color: #6E46FF;
      color: white;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      transition: background-color 0.3s; }
      .set-password-page .registration-form .btn:hover, .login-page .registration-form .btn:hover {
        background-color: #5A2ECC; }
  .set-password-page .pwd-hint.weak, .login-page .pwd-hint.weak {
    color: #FF6347; }
  .set-password-page .pwd-hint.medium, .login-page .pwd-hint.medium {
    color: #FFA500; }
  .set-password-page .pwd-hint.strong, .login-page .pwd-hint.strong {
    color: #32CD32; }

.dashboard {
  /* The switch - the box around the slider */
  /* Hide default HTML checkbox */
  /* The slider */
  /* Other styles remain the same */
  /* Additional styling for dropdown */
  /* Additional styling to make the dropdown more compact */ }
  .dashboard .list-group-item {
    border-radius: 0.5rem;
    transition: box-shadow 0.3s ease-in-out;
    margin-bottom: 1rem;
    padding: 20px; }
  .dashboard .list-group-item:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); }
  .dashboard .list-group-item img {
    width: 50px;
    height: 50px; }
  .dashboard .list-group-item h5 {
    font-weight: 600;
    color: #007bff;
    font-size: 1.25rem; }
  .dashboard .text-muted {
    font-size: 0.75rem;
    /* Smaller font size for details */ }
  .dashboard .fw-bold {
    font-weight: 700; }
  .dashboard .fs-6 {
    font-size: 1rem;
    /* Adjusted for smaller ads count size */ }
  .dashboard .text-secondary {
    color: #6c757d; }
  .dashboard .flex-grow-1 {
    flex-grow: 1; }
  .dashboard .dropdown .dropdown-toggle {
    background: transparent;
    /* Ensures the button background blends with the form */
    border: 1px solid #ccc;
    /* Subtle border to match the sleek look of the toggle */
    margin-top: 3px;
    width: 100%;
    color: #6c757d;
    /* Neutral color for the icon */
    padding: 6px 12px;
    /* Adequate padding to make it easy to tap on touch devices */
    transition: background-color 0.3s;
    /* Smooth transition for hover effects */ }
  .dashboard .dropdown .dropdown-toggle:hover {
    background-color: #f8f9fa;
    /* Light background on hover to indicate interactivity */
    color: #5a6268;
    /* Slightly darker text/icon color on hover */ }
  .dashboard .dropdown .dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    /* Focus ring to improve accessibility */
    outline: none;
    /* Remove default focus outline */ }
  .dashboard h2 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    /* Modern, readable font */
    font-size: 2rem;
    /* Prominent size while not too large */
    font-weight: 700;
    color: #6E46FF;
    /* Dark grey, soft on the eyes, professional */
    text-transform: uppercase;
    /* Makes it stand out and increases readability */
    letter-spacing: 1.5px;
    /* Adds spacing between letters for a more open look */
    margin-bottom: 20px;
    /* Provides space below the heading */
    border-bottom: 2px solid #ccc;
    /* Adds a line below the text for emphasis */
    padding-bottom: 2px;
    /* Space between text and border */ }
  .dashboard .list-group-item {
    cursor: grab; }
  .dashboard .list-group-item:active {
    cursor: grabbing; }
  .dashboard .suggestion-box {
    position: absolute;
    width: 100%;
    background: white;
    border: 1px solid #ccc;
    z-index: 1001; }
  .dashboard .suggestion-box div {
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #eee; }
  .dashboard .suggestion-box div:hover {
    background-color: #f9f9f9; }
  .dashboard .switch {
    position: relative;
    display: inline-block;
    width: 80px;
    /* Default width */
    height: 34px;
    /* Default height */
    /* Larger size on mobile devices */ }
    @media (max-width: 768px) {
      .dashboard .switch {
        width: 125px;
        /* Increased width on mobile */
        height: 50px;
        /* Increased height on mobile */ } }
  .dashboard .switch input {
    opacity: 0;
    width: 0;
    height: 0; }
  .dashboard .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
    /* Circular ends, adjust if needed */ }
    @media (max-width: 768px) {
      .dashboard .slider {
        border-radius: 50px;
        /* Increased border-radius on mobile */ } }
  .dashboard .slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%; }
    @media (max-width: 768px) {
      .dashboard .slider:before {
        height: 42px;
        /* Increased height on mobile */
        width: 42px;
        /* Increased width on mobile */
        left: 6px;
        bottom: 4px; } }
  .dashboard input:checked + .slider {
    background-color: #2196F3; }
  .dashboard input:focus + .slider {
    box-shadow: 0 0 1px #2196F3; }
  .dashboard input:checked + .slider:before {
    transform: translateX(46px);
    /* Adjust for original size */ }
    @media (max-width: 768px) {
      .dashboard input:checked + .slider:before {
        transform: translateX(72px);
        /* Adjusted translation for larger mobile switch */ } }
  .dashboard .font-small {
    font-size: 0.75rem; }
  .dashboard .toastify {
    border-radius: 25px; }
  .dashboard .periodicity-select {
    width: 80px;
    /* Default width */
    font-size: 12px;
    /* Default font size */
    padding: .25rem .5rem;
    /* Default smaller padding */ }
    @media (max-width: 768px) {
      .dashboard .periodicity-select {
        width: 120px;
        /* Increased width to match mobile switch */
        font-size: 16px;
        /* Larger font size for better readability on mobile */
        padding: .5rem .75rem;
        /* Increased padding for better touch interaction */ } }

.dropdown-menu {
  background-color: #5A2ECC; }
  .dropdown-menu .dropdown-item {
    background-color: #5A2ECC;
    color: white !important; }
    .dropdown-menu .dropdown-item:hover, .dropdown-menu .dropdown-item:focus {
      background-color: #9679ff !important;
      color: white !important; }

.dropdown-toggle:after {
  color: #6E46FF !important; }

.grid-item .card:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); }

.card .status-indicator {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
  transition: background-color 0.3s; }
  .card .status-indicator.active {
    background-color: #4CAF50;
    box-shadow: 0 0 10px rgba(76, 175, 80, 0.5); }
  .card .status-indicator.inactive {
    background-color: #f44336;
    box-shadow: 0 0 10px rgba(244, 67, 54, 0.5); }
  .card .status-indicator:hover {
    transform: scale(1.1); }

.date-picker-dialog {
  display: none;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: white;
  border: 1px solid #ccc;
  z-index: 1050;
  /* Higher than most page elements */
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); }

.date-picker-content {
  display: flex;
  flex-direction: column;
  align-items: start; }

.date-range-options a {
  display: block;
  margin: 10px 0;
  color: #007bff;
  cursor: pointer; }

.custom-date-range {
  margin-top: 20px; }

#dateRangeButton {
  position: absolute;
  right: 5%;
  font-weight: bold; }

.fl-blue {
  color: #4267B2; }

.opacity-30 {
  opacity: 0.3; }

.card-text .fa {
  font-size: 0.75rem;
  margin-right: 0.5rem; }

.format-bubble {
  display: inline-flex;
  align-items: center;
  padding: 7px 7px;
  margin: 5px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  background-color: #f8f9fa;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  font-size: 0.9em; }

.format-bubble .fas {
  color: #818181; }

.format-text {
  color: #777575; }

.pageThumb {
  border: 1px solid lightgray;
  width: 100%;
  z-index: 10; }

.card-footer {
  background-color: #fff;
  border-top: 1px solid #dee2e6;
  /* Bootstrap's default border color for card-footer */ }
  .card-footer .metricContainer:not(:last-child) {
    border-right: 1px solid #ccc; }

.metric-value {
  font-size: 1.5em;
  /* Larger font size for metrics */
  color: #000; }

.metric-label {
  font-size: 0.8em;
  /* Smaller font size for labels */
  color: #666; }

.metric-spacer {
  width: 1px;
  background-color: #e0e0e0;
  /* Light grayish color for spacers */
  margin: 8px 0;
  /* Vertical padding for spacer */ }

.tooltip-text {
  border-bottom: 1px dotted;
  /* Dotted underline to indicate tooltip */
  cursor: help;
  /* Cursor changes to help icon on hover */ }

.adImage-wrapper .bookmarks {
  padding-right: 10px;
  position: absolute;
  right: 0; }
  .adImage-wrapper .bookmarks .bookmark {
    transition: all 0.3s ease; }
    .adImage-wrapper .bookmarks .bookmark:hover {
      background-color: #6c757d;
      border-color: #6c757d;
      color: white; }

table .bookmarks {
  position: relative !important; }

/* Add this CSS to your stylesheet */
/* Add this CSS to your stylesheet */
/* Add this CSS to your stylesheet */
@keyframes spinner {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }
input.loading {
  background-image: url("/assets/icons/spinner.svg");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1.5rem 1.5rem;
  padding-right: 2.5rem; }

#newActiveAds {
  height: 500px; }

.timeScopeDropdown {
  position: absolute;
  right: 0;
  top: 0;
  width: 200px; }

/*# sourceMappingURL=main.css.map */
