/* /Components/Account/Pages/Manage/ExternalLogins.razor.rz.scp.css */
/* ========================================
   EXTERNAL LOGINS PAGE - SPECIFIC STYLES
   ======================================== */

.external-logins-page[b-wxyz09pxzw] {
    max-width: 600px;
}

/* ========================================
   SECTION HEADINGS
   ======================================== */

.section-heading[b-wxyz09pxzw] {
    color: #41556b; /* JordnaerPalette.BlueBody */
    font-family: 'Open Sans Medium', sans-serif;
    font-size: 1.25rem;
    margin-top: 0;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(65, 85, 107, 0.15);
}

/* ========================================
   CURRENT LOGINS SECTION
   ======================================== */

.current-logins-section[b-wxyz09pxzw] {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(65, 85, 107, 0.15);
}

.logins-list[b-wxyz09pxzw] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.login-item[b-wxyz09pxzw] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: rgba(65, 85, 107, 0.04);
    border-radius: 6px;
    border: 1px solid rgba(65, 85, 107, 0.12);
    gap: 1rem;
}

.login-provider[b-wxyz09pxzw] {
    color: #41556b;
    font-family: 'Open Sans Medium', sans-serif;
    font-size: 1rem;
    flex: 1;
}

.remove-button[b-wxyz09pxzw] {
    padding: 0.5rem 1rem;
    min-width: 100px;
    height: 40px;
    font-family: 'Open Sans Medium', sans-serif;
    font-size: 0.9rem;
    border: 1px solid #dc3545;
    border-radius: 4px;
    background-color: transparent;
    color: #dc3545;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    white-space: nowrap;
}

.remove-button:hover[b-wxyz09pxzw] {
    background-color: #dc3545;
    color: white;
}

.remove-button:focus-visible[b-wxyz09pxzw] {
    outline: 2px solid #dc3545;
    outline-offset: 2px;
}

/* ========================================
   ADD LOGINS SECTION
   ======================================== */

.add-logins-section[b-wxyz09pxzw] {
    margin-top: 2rem;
}

.external-login-form[b-wxyz09pxzw] {
    width: 100%;
}

.external-login-buttons[b-wxyz09pxzw] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    max-width: 100%; /* Prevent overflow on mobile */
}

/* ========================================
   MOBILE RESPONSIVE
   ======================================== */

@media (max-width: 767px) {
    .external-logins-page[b-wxyz09pxzw] {
        max-width: 100%;
    }

    .login-item[b-wxyz09pxzw] {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
        padding: 0.875rem;
    }

    .login-provider[b-wxyz09pxzw] {
        text-align: center;
        padding-bottom: 0.25rem;
    }

    .remove-button[b-wxyz09pxzw] {
        width: 100%;
        min-width: auto;
        height: 44px;
    }

    .section-heading[b-wxyz09pxzw] {
        font-size: 1.15rem;
    }

    .external-login-buttons[b-wxyz09pxzw] {
        gap: 0.5rem;
    }
}

/* ========================================
   TABLET AND DESKTOP
   ======================================== */

@media (min-width: 768px) {
    .login-item[b-wxyz09pxzw] {
        padding: 1.125rem 1.25rem;
    }

    .remove-button[b-wxyz09pxzw] {
        min-width: 120px;
    }
}
/* /Features/Ad/SponsorAd.razor.rz.scp.css */
.image-ad-wrapper[b-9luqb1yi75] {
  display: flex;
  justify-content: center; 
  align-items: center; 
}

.image-with-label[b-9luqb1yi75] {
  position: relative;
}

.image-ad-label[b-9luqb1yi75] {
  position: absolute;
  top: 20px;
  right: 0;
  background-color: rgba(0, 0, 0, 0.35);
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.7em; /* You can adjust the font size to fit the label within the image */
}
