/* ============================================
   STAGELINKS STYLE SHEET
   Colors: #BBBFBF #878787 #05AD98 #FFFFFF
   ============================================ */

/* --- Base --- */
html, body {
    min-height: 100% !important;
    height: auto !important;
}

body {
    background: linear-gradient(180deg, black, black) !important;
    text-shadow: 0 .05rem .1rem rgba(0, 0, 0, .3);
    box-shadow: inset 0 0 5rem rgba(0, 0, 0, .3);
    margin: 0 !important;
    padding: 0 !important;
}

/* --- Layout --- */
.cover-container {
    max-width: 42em;
    min-height: 100vh;
    height: auto !important;
}

header {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* --- Navigation --- */
.navbar {
    background-color: rgba(0, 0, 0, 0.199) !important;
}
.navbar-brand {
    color: #96e2d8 !important;
}

.nav-link {
    color: #FFFFFF !important;
}

.nav-link:hover {
    color: #05AD98 !important;
}

/* --- Buttons --- */
.btn-primary {
    background-color: #05AD98 !important;
    border-color: #05AD98 !important;
}

.btn-primary:hover {
    background-color: #048a79 !important;
    border-color: #048a79 !important;
}

/* --- Cards --- */
.card {
    background-color: rgba(134, 134, 134, 0.207);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
}

.card-body {
    padding-top: 30px;
    padding-bottom: 30px;
}

.card-title {
    color: #96e2d8;
}

.card-text {
    color: #FFFFFF;
}

/* --- Forms --- */
.form-control,
.form-select,
input[type="text"],
input[type="email"],
input[type="password"],
input[type="file"],
textarea,
select {
    background-color: rgba(134, 134, 134, 0.3) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 5px !important;
    color: #ffffff !important;
}

select option {
    background-color: #474747 !important;
    color: #ffffff !important;
}

.form-control::placeholder,
.form-select::placeholder,
input::placeholder,
textarea::placeholder {
    color: rgba(255, 255, 255, 0.6) !important;
    opacity: 1 !important;
}


input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="file"]:focus,
textarea:focus,
select:focus {
    border-color: #05AD98 !important;
    color: #ffffff !important;
    box-shadow: 0 0 0 0.25rem rgba(5, 173, 152, 0.25) !important;
}

input[type="file"] {
    display: none;
}

.file-upload-btn {
    background-color: #05AD98;
    border: none;
    border-radius: 5px;
    color: #FFFFFF;
    padding: 0.375rem 0.75rem;
    cursor: pointer;
    display: inline-block;
}

.file-upload-btn:hover {
    background-color: #048a79;
}

.file-name {
    color: rgba(255, 255, 255, 0.5);
    margin-left: 10px;
    font-size: 0.9rem;
}

.state-field {
    min-width: 80px;
}

/* --- Delete Button --- */
.delete-btn {
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    padding-bottom: 2px;
    position: absolute;
    top: 5px;
    right: 5px;
    line-height: 1;
}

.delete-btn:hover {
    background-color: rgba(255, 255, 255, 0.4);
    color: #FFFFFF;
}

/* --- Toast Notification --- */
.toast-message {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    opacity: 1;
    transition: opacity 1s ease-out;
}

/* --- Misc --- */
.dropdown {
    margin-bottom: 15px;
}

.link {
    display: block;
    margin-top: 15px;
    color: #05AD98 !important;
    text-decoration: underline;
}

/* --- Home Page Hero --- */
.home-hero {
    background-image: url('/static/img/heroLOGO.png');
    background-size: cover;
    background-position: center;
    width: 100%;
    min-height: 100vh;
    padding: 80px 2rem 4rem 2rem;
    padding-top: 0;
    margin-top: 0;
}

.page-hero {
    background-image: url('/static/img/heroB.png');
    background-size: cover;
    background-position: center;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 100vh;
    padding: 2rem;
}

.cover-container {
    max-width: 42em;
    min-height: 100vh;
    height: auto !important;
    padding: 0 !important;
}