
    #toast-container > .toast-success {
        background-color: #f6bfae !important; /* Change this to your desired color */
        color: #fff; /* Optional: Change text color if needed */
        opacity: 1;
        box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.5) !important;
    }
    .form-group .iti { display: block; }
    .profile-photo .avatar { position: relative; }
    .profile-photo #loader{ display: none; align-items:center; justify-content: center; position: absolute;left: 0;width: 100%;top: 0;height: 100%;background: rgba(0, 0, 0, 0.5);}
    /* .profile-photo .btn-icon { z-index: 9999; } */
    .profile-photo #loader img { width: 70px;height: 70px; }
    .dropdown-item.active, .dropdown-item:active {
        background: var(--primary-color) !important;
    }
    a.nav-link.active {
        color: var(--primary-color) !important;
    }
    #dateInput {
        cursor: pointer;
    }
    #flexCheckDefault{
            cursor: pointer;
    }
.preloader{position: fixed; width: 100%; height: 100%; background: #fff; z-index: 9999; display: flex; align-items: center; justify-content: center;}

    /* Styles for PayPal modal */
    .paypal-modal {
        display: none;
        position: fixed;
        z-index: 1050;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgba(0, 0, 0, 0.55);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        animation: fadeInOverlay 0.2s ease;
    }
    @keyframes fadeInOverlay {
        from { opacity: 0; }
        to   { opacity: 1; }
    }
    .paypal-modal-content {
        background-color: #ffffff;
        margin: 8% auto;
        padding: 0;
        width: 92%;
        max-width: 440px;
        border-radius: 16px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
        animation: slideUpModal 0.25s ease;
        overflow: hidden;
    }
    @keyframes slideUpModal {
        from { transform: translateY(30px); opacity: 0; }
        to   { transform: translateY(0);    opacity: 1; }
    }
    .paypal-modal-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 18px 22px 16px;
        border-bottom: 1px solid #f0f0f0;
    }
    .paypal-modal-header h5 {
        margin: 0;
        font-size: 16px;
        font-weight: 700;
        color: #1a1a2e;
        letter-spacing: 0.2px;
    }
    .paypal-modal-header p {
        margin: 2px 0 0;
        font-size: 12px;
        color: #888;
    }
    .paypal-modal-body {
        padding: 22px 22px 26px;
    }
    .paypal-modal-divider {
        display: flex;
        align-items: center;
        gap: 10px;
        margin: 14px 0;
        color: #bbb;
        font-size: 12px;
    }
    .paypal-modal-divider::before,
    .paypal-modal-divider::after {
        content: '';
        flex: 1;
        height: 1px;
        background: #ebebeb;
    }
    .paypal-close {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background: #f5f5f5;
        color: #555;
        font-size: 18px;
        font-weight: bold;
        line-height: 1;
        cursor: pointer;
        border: none;
        transition: background 0.15s;
        flex-shrink: 0;
    }
    .paypal-close:hover,
    .paypal-close:focus {
        background: #e8e8e8;
        color: #111;
        text-decoration: none;
    }
    .cookie-consent {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: var(--secondary-color);
        color: #fff;
        padding: 18px 20px;
        z-index: 9999;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
      }

      .cookie-consent-inner {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 15px;
      }

      .cookie-consent-text {
        margin: 0;
        flex: 1 1 480px;
        font-size: 15px;
        line-height: 1.5;
      }

      .cookie-consent-text a {
        color: var(--primary-color);
        margin-left: 6px;
        text-decoration: underline;
      }

      .cookie-consent-actions {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        flex-shrink: 0;
      }

      .btn-accept,
      .btn-decline,
      .btn-manage {
        padding: 8px 18px;
        border: none;
        border-radius: 6px;
        cursor: pointer;
        font-weight: 600;
        font-size: 14px;
        transition: background 0.15s;
      }

      .btn-accept {
        background-color: var(--primary-color) !important;
        color: var(--secondary-color);
      }

      .btn-accept:hover {
        background-color: var(--primary-dark) !important;
        color: #fff;
      }

      /* Must stay as prominent as .btn-accept: PECR/GDPR treat a visually
         de-emphasised reject option as an invalid nudge toward consent. */
      .btn-decline {
        background-color: transparent;
        color: #fff;
        border: 1px solid #fff;
      }

      .btn-decline:hover {
        background-color: rgba(255, 255, 255, 0.15);
      }

      .btn-manage {
        background-color: transparent;
        color: var(--primary-color);
        border: 1px solid var(--primary-color);
      }

      .btn-manage:hover {
        background-color: var(--primary-color);
        color: var(--secondary-color);
      }

      /* Cookie preference centre modal */
      .cookie-pref-modal {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.55);
        z-index: 10000;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;
      }

      .cookie-pref-dialog {
        background: #fff;
        border-radius: 16px;
        width: 100%;
        max-width: 620px;
        max-height: 88vh;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
      }

      .cookie-pref-header {
        padding: 20px 24px 16px;
        background-color: var(--secondary-color);
        color: #fff;
        border-bottom: 1px solid #eee;
      }

      .cookie-pref-title-row {
        display: flex;
        align-items: center;
        gap: 10px;
      }

      .cookie-pref-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary-color);
        flex-shrink: 0;
      }

      .cookie-pref-icon svg {
        width: 26px;
        height: 26px;
      }

      .cookie-pref-header h4 {
        margin: 0;
        font-size: 19px;
        font-weight: 700;
        flex: 1 1 auto;
      }

      .cookie-pref-close {
        background: none;
        border: none;
        color: rgba(255, 255, 255, 0.75);
        font-size: 24px;
        line-height: 1;
        cursor: pointer;
        flex-shrink: 0;
        padding: 2px 4px;
      }

      .cookie-pref-close:hover {
        color: #fff;
      }

      .cookie-pref-subtitle {
        margin: 8px 0 0;
        font-size: 13.5px;
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.5;
      }

      .cookie-pref-body {
        padding: 20px 24px;
        overflow-y: auto;
        background: #fafafb;
      }

      .cookie-category-row {
        display: flex;
        align-items: flex-start;
        gap: 14px;
        padding: 16px;
        margin-bottom: 14px;
        background: #fff;
        border: 1px solid #ececf1;
        border-radius: 14px;
      }

      .cookie-category-row:last-child {
        margin-bottom: 0;
      }

      .cookie-category-icon {
        width: 46px;
        height: 46px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
      }

      .cookie-category-icon svg {
        width: 22px;
        height: 22px;
      }

      .cookie-category-icon.icon-essential {
        background: #e4f6ea;
        color: #28a745;
      }

      .cookie-category-icon.icon-functional {
        background: #e3edfd;
        color: #2f6fed;
      }

      .cookie-category-icon.icon-analytics {
        background: #ece7fb;
        color: #7c5cf0;
      }

      .cookie-category-icon.icon-marketing {
        background: #fdece3;
        color: #e8734a;
      }

      .cookie-category-content {
        flex: 1 1 auto;
        min-width: 0;
      }

      .cookie-category-name {
        display: block;
        font-weight: 700;
        color: var(--secondary-color);
        font-size: 15px;
      }

      .cookie-category-description {
        margin: 6px 0 0;
        font-size: 13px;
        color: #666;
        line-height: 1.5;
      }

      .cookie-toggle-switch {
        position: relative;
        display: inline-flex;
        flex-shrink: 0;
        align-self: center;
        margin-left: auto;
      }

      .cookie-toggle-switch input[type="checkbox"] {
        appearance: none;
        -webkit-appearance: none;
        width: 26px;
        height: 26px;
        margin: 0;
        background: #fff;
        border: 2px solid #d8dbe3;
        border-radius: 8px;
        cursor: pointer;
        position: relative;
        transition: 0.15s;
      }

      .cookie-toggle-switch input[type="checkbox"]:checked {
        background: var(--secondary-color);
        border-color: var(--secondary-color);
      }

      .cookie-toggle-switch input[type="checkbox"]:checked::after {
        content: "";
        position: absolute;
        left: 8px;
        top: 3px;
        width: 6px;
        height: 12px;
        border: solid #fff;
        border-width: 0 2px 2px 0;
        transform: rotate(45deg);
      }

      .cookie-toggle-switch input[type="checkbox"]:disabled {
        background: #c7cad1;
        border-color: #c7cad1;
        opacity: 1;
        cursor: not-allowed;
      }

      .cookie-pref-footer {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: flex-end;
        padding: 16px 24px;
        border-top: 1px solid #eee;
      }

      .cookie-pref-footer .btn-decline {
        color: var(--secondary-color);
        border: 1px solid #d8dbe3;
      }

      .cookie-pref-footer .btn-decline:hover {
        background-color: #f5f6f8;
        color: var(--secondary-color);
      }

      .cookie-pref-footer .btn-manage {
        color: var(--secondary-color);
        border: 1px solid var(--secondary-color);
      }

      .cookie-pref-footer .btn-manage:hover {
        background-color: var(--secondary-color);
        color: #fff;
      }

      @media (max-width: 576px) {
        .cookie-consent-actions {
          width: 100%;
        }
        .cookie-consent-actions button {
          flex: 1 1 auto;
        }
      }

      @media (max-width: 767px) {
        .cookie-pref-modal {
          padding: 10px;
        }
        .cookie-pref-dialog {
          max-width: 100%;
          max-height: 96vh;
          border-radius: 14px;
        }
        .cookie-pref-header {
          padding: 12px 14px 10px;
        }
        .cookie-pref-header h4 {
          font-size: 17px;
        }
        .cookie-pref-icon svg {
          width: 22px;
          height: 22px;
        }
        .cookie-pref-subtitle {
          margin-top: 4px;
          font-size: 12.5px;
          line-height: 1.35;
        }
        .cookie-pref-body {
          padding: 10px 14px;
          overflow-y: auto;
        }
        .cookie-category-row {
          padding: 8px 10px;
          gap: 8px;
          border-radius: 10px;
          margin-bottom: 8px;
        }
        .cookie-category-icon {
          width: 32px;
          height: 32px;
          border-radius: 8px;
        }
        .cookie-category-icon svg {
          width: 16px;
          height: 16px;
        }
        .cookie-category-name {
          font-size: 13px;
        }
        .cookie-category-description {
          margin-top: 3px;
          font-size: 11px;
          line-height: 1.35;
        }
        .cookie-toggle-switch input[type="checkbox"] {
          width: 22px;
          height: 22px;
        }
        .cookie-toggle-switch input[type="checkbox"]:checked::after {
          left: 6px;
          top: 2px;
          width: 5px;
          height: 10px;
        }
        .cookie-pref-footer {
          flex-wrap: nowrap;
          gap: 6px;
          padding: 10px 14px;
        }
        .cookie-pref-footer button {
          flex: 1 1 0;
          min-width: 0;
          padding: 9px 6px;
          font-size: 12px;
          white-space: normal;
          text-align: center;
        }
      }

      @media (max-width: 479px) {
        .cookie-pref-footer button {
          padding: 8px 4px;
          font-size: 10.5px;
        }
      }


      