@charset "utf-8";
/* CSS Document */
/* assets/style.css */
body { padding-bottom: 140px; }
.cover { aspect-ratio: 1 / 1; object-fit: cover; }
.track-card { transition: transform .15s ease, border-color .15s ease; }
.track-card:hover { transform: translateY(-3px); border-color: #198754 !important; }
.player-bar audio { height: 34px; }

body {
    padding-bottom: 120px; /*140*/
}

audio {
    width: 100%;
    max-width: 100%;
}

.player-bar,
.fixed-bottom {
    padding-bottom: calc(16px + env(safe-area-inset-bottom));
}


.form-label {color: floralwhite;}

/* =========================================
GLOBAL DARK THEME FIXES
========================================= */

body,
.card,
.card-body,
.list-group-item,
.form-control,
.form-select,
.modal-content,
.dropdown-menu,
.table,
.table td,
.table th,
textarea,
input,
select {
    color: #ffffff !important;
}

/* Dark inputs */
.form-control,
.form-select,
textarea,
input {
    background-color: #1a1a1a !important;
    border-color: #444 !important;
}

/* Placeholder text */
::placeholder {
    color: #bbbbbb !important;
    opacity: 1;
}

/* Links */
a {
    color: #ffd84d !important;
    text-decoration: none;
}

a:hover {
    color: #fff099 !important;
    text-decoration: underline;
}

/* Buttons */
.btn-outline-light {
    color: #ffffff !important;
}

/* Cards */
.card,
.list-group-item,
.modal-content {
    background-color: #111 !important;
}

/* Dropdowns */
.dropdown-menu {
    background-color: #111 !important;
}

/* Tables */
.table {
    color: white !important;
}

/* Audio labels */
.small,
.text-secondary {
    color: #cccccc !important;
}

/* Navbar links */
.navbar a {
    color: #ffd84d !important;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    color: white !important;
}
body,
.card,
.card-body,
.list-group-item,
.form-control,
.form-select,
textarea,
input,
select,
label,
p,
div {
    color: #fff !important;
}

.form-control,
.form-select,
textarea,
input,
select {
    background-color: #111 !important;
    border-color: #555 !important;
}

::placeholder {
    color: #ccc !important;
}

a {
    color: #ffd84d !important;
}

a:hover {
    color: #fff3a0 !important;
}

/*//////////////////////*/
/* =========================================
MOBILE WIDTH FIXES
========================================= */

.page-wrap {
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 768px) {

    .container,
    .container-fluid {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    .card {
        border-radius: 12px !important;
    }

    .btn {
        min-height: 44px;
    }

    .form-control,
    .form-select {
        min-height: 48px;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .list-group-item {
        padding: 14px;
    }
}

/* Desktop: keep forms nicely centered */
.responsive-narrow {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

/* Mobile: use almost full screen width */
@media (max-width: 768px) {
    .responsive-narrow {
        max-width: 100% !important;
        width: 100% !important;
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
}

/* =========================================
BOOTSTRAP ALERT FIXES
========================================= */

.alert {
    color: #111 !important;
}

.alert-danger {
    background-color: #ffdddd !important;
    border-color: #ff9999 !important;
    color: #660000 !important;
}

.alert-warning {
    background-color: #fff3cd !important;
    border-color: #ffe69c !important;
    color: #664d03 !important;
}

.alert-success {
    background-color: #d1e7dd !important;
    border-color: #a3cfbb !important;
    color: #0f5132 !important;
}

.alert-info {
    background-color: #cff4fc !important;
    border-color: #9eeaf9 !important;
    color: #055160 !important;
}
.navbar-nav .nav-link {
    white-space: nowrap;
}

/*to address sideways movement of some pages on the iphone:*/
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

img,
audio,
video,
iframe {
    max-width: 100%;
}

.row {
    margin-left: 0;
    margin-right: 0;
}

.container-fluid {
    overflow-x: hidden;
}

.navbar-brand {
    max-width: 70%;
    overflow: hidden;
    white-space: nowrap;
}

.navbar-brand span {
    overflow: hidden;
    text-overflow: ellipsis;
}


.btn-warning,
.btn-outline-warning:hover,
.btn-warning:focus,
.btn-warning:active {
    color: #111 !important;
}

.navbar-brand img {
    max-height: 42px;
}

.navbar-brand span {
    white-space: nowrap;
}

@media (max-width: 768px) {
    .navbar-brand span {
        font-size: 1rem;
    }
}
/*error messaging*/
.flash-container {
    position: fixed;
    top: 85px;
    right: 20px;
    z-index: 9999;
    width: 380px;
    max-width: calc(100vw - 24px);
}

.flash-container .alert {
    box-shadow: 0 8px 24px rgba(0,0,0,.45);
}
/* mobile phones*/
@media (max-width: 768px) {
    .flash-container {
        left: 12px;
        right: 12px;
        width: auto;
    }
}


/* WGT Custom Player */

.wgt-player {
    background: #050505;
    border: 1px solid #333;
    border-radius: 18px;
    padding: 18px;
    margin-top: 35px;
    margin-bottom: 30px;
}

.wgt-player-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
}

.wgt-player-controls .btn {
    min-width: 54px;
    min-height: 48px;
    font-size: 1.25rem;
    line-height: 1;
}

.wgt-now-playing {
    text-align: center;
    color: #ccc;
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.wgt-time-row {
    display: flex;
    justify-content: space-between;
    color: #ccc;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .wgt-player {
        padding: 16px;
        border-radius: 14px;
    }

    .wgt-player-controls .btn {
        min-width: 58px;
        min-height: 52px;
        font-size: 1.35rem;
    }
}
