/* =====================
   FixerBin UI – Bootstrap Overrides
   ===================== */

/* Color Scheme */
:root {
    --bs-primary: #66fcf1;
    --bs-secondary: #45a29e;
    --bs-body-bg: #0b0f13;
    --bs-body-color: #66fcf1;
}

/* Global Body Styles */
body {
    font-family: 'JetBrains Mono', monospace;
    background-color: var(--bs-body-bg);
    color: var(--bs-body-color);
    padding: 1rem;
    margin: 0;
}

/* Form Control (Unified Input Style) */
.form-control,
.form-control:focus {
    background-color: #1f2833;
    color: #66fcf1;
    border: 2px solid #45a29e;
    border-radius: 8px;
    font-size: 1rem;
    padding: 0.75rem 1rem;
    transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    box-shadow: none;
}

.form-control:focus {
    border-color: #66fcf1;
    box-shadow: 0 0 0 0.2rem rgba(102, 252, 241, 0.25);
}
.form-control::placeholder {
    color: #45a29e;
    opacity: 1; /* Firefox fix */
}
.form-control:focus::placeholder {
    color: #66fcf1;
}

/* Button Primary */
.btn-primary {
    background-color: #66fcf1 !important;
    color: #1f2833 !important;
    border-color: #45a29e !important;
}

.btn-primary:hover {
    background-color: #45a29e !important;
    color: #1f2833 !important;
}

/* Bootstrap Card with FixerBin Colors */
.card {
    background-color: #0b0c10;
    border: 1px solid #45a29e;
    border-radius: 10px;
    color: #66fcf1;
}

.card-header {
    background-color: #1f2833;
    border-bottom: 1px solid #45a29e;
    font-weight: bold;
}

.card-body {
    padding: 1.5rem;
}

/* Utilities */
.bg-dark {
    background-color: #1f2833 !important;
    color: #66fcf1 !important;
}

.bg-primary {
    background-color: #66fcf1 !important;
    color: #1f2833 !important;
}

.border-primary {
    border-color: #66fcf1 !important;
}

.text-primary {
    color: #66fcf1 !important;
}

.text-dark {
    color: #0b0c10 !important;
}

/* Links */
a {
    color: #66fcf1;
    text-decoration: none;
}
a:hover {
    color: #ffffff;
    text-decoration: underline;
}

footer {
    background-color: var(--bs-body-bg);
    color: #66fcf1;
    border-top: 1px solid #45a29e;
    align-content: center;
    text-align: center;
}

footer a {
    color: #66fcf1;
    text-decoration: underline;
}

footer a:hover {
    color: #ffffff;
}