﻿html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}
/* Footer container alignment */
.footer-logo-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0 10px;
}

/* Logo sizing + glow */
.footer-logo {
    max-width: 260px; /* 👈 control size here */
    width: 100%;
    height: auto;
    object-fit: contain;
    /* subtle glow, not overpowering */
    filter: drop-shadow(0 0 6px rgba(0,255,0,0.35)) drop-shadow(0 0 14px rgba(0,255,0,0.15));
}
.owner-toggle-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 12px;
}

    .owner-toggle-wrap .toggle-label {
        color: #eaffea;
        font-weight: 800;
        text-shadow: 0 0 6px rgba(18,140,70,1),0 0 16px rgba(18,140,70,.85);
        white-space: nowrap;
    }

/* toggle switch */
.switch {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 28px;
}

    .switch input {
        display: none;
    }

.slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: rgba(120,255,170,0.18);
    border: 2px solid #2bbf6a;
    transition: .2s;
    border-radius: 999px;
    box-shadow: 0 0 10px rgba(18,140,70,.65),0 0 26px rgba(18,140,70,.45);
}

    .slider:before {
        position: absolute;
        content: "";
        height: 20px;
        width: 20px;
        left: 4px;
        top: 50%;
        transform: translateY(-50%);
        background: #eaffea;
        border-radius: 50%;
        transition: .2s;
        box-shadow: 0 0 10px rgba(18,140,70,.55);
    }

.switch input:checked + .slider:before {
    transform: translate(24px, -50%);
}
