/* Non League Picks — shared styles
   Loaded on every page before the inline <style> block.
   Inline styles come later in the document and safely override where values differ. */

/* ---- Base ---- */
body {
    background: #f4f4f4;
    font-family: Arial, sans-serif;
    margin: 0;
}

/* ---- Page layout ---- */
.page-wrap {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.page-content {
    flex: 1;
    padding-bottom: 32px;
}

/* ---- Cards ---- */
.card-style {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
    border-top: 6px solid #000;
}

/* ---- Buttons ---- */
.btn-black {
    background: #000;
    color: #fff !important;
    border: 2px solid #000;
    font-weight: 700;
}

.btn-black:hover {
    background: #fff;
    color: #000 !important;
}

.btn-custom {
    background: #000;
    color: #fff !important;
    border: 2px solid #000;
    font-weight: 700;
}

.btn-custom:hover {
    background: #fff;
    color: #000 !important;
    border-color: #000;
}

/* ---- Google auth button ---- */
.btn-google {
    background: #fff;
    color: #444 !important;
    border: 2px solid #ddd;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
}

.btn-google:hover {
    background: #f5f5f5;
    border-color: #bbb;
    color: #222 !important;
}

.btn-google img {
    width: 20px;
    height: 20px;
}

/* ---- OR divider (login / register) ---- */
.or-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 14px 0;
    color: #666;
    font-weight: bold;
}

.or-divider::before,
.or-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #ddd;
}

/* ---- Back link ---- */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    color: #000;
    text-decoration: none;
    font-weight: bold;
}

.back-link:hover {
    text-decoration: underline;
    color: #000;
}

/* ---- Notice / info box ---- */
.notice-box {
    background: #eef4ff;
    border-left: 5px solid #0d6efd;
    border-radius: 8px;
    padding: 12px 14px;
    margin-bottom: 18px;
}

/* ---- Nav tabs ---- */
.nav-tabs .nav-link {
    color: #000;
}

.nav-tabs .nav-link.active {
    font-weight: 700;
    color: #000;
}

/* ---- Responsive ---- */
@media (max-width: 575px) {
    .card-style {
        padding: 14px 12px;
    }
}
