/* Custom CSS for Bad Luck's Bane - Dark Theme */

:root {
    --bg-color: #121212;
    --text-color: #e0e0e0;
    --primary-color: #007bff;
    --secondary-color: #1e88e5;
    --accent-color: #ff5722;
    --border-color: #333;
    --hover-color: #0056b3;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

/* Card Body - Dark Theme Fix */
.card-body {
    background-color: #1e1e1e;
    color: var(--text-color);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    padding: 1rem;
}

.card {
    background-color: #1e1e1e;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    margin-bottom: 1rem;
}

/* Card Text - Dark Theme Fix */
.card-text {
    color: #e0e0e0 !important;
}

.card-text li {
    color: #e0e0e0 !important;
}

/* Links */
a {
    color: var(--primary-color);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* High Contrast Text */
h1, h2, h3, h4, h5, h6 {
    color: var(--primary-color);
    font-weight: bold;
}

p, li, td, th {
    color: var(--text-color);
}

/* Ensure card-text is applied correctly */
.card-body .card-text {
    color: #e0e0e0 !important;
}

.card-body .card-text li {
    color: #e0e0e0 !important;
}

/* Button Font Color - White */
.btn-primary {
    color: #ffffff !important;
}
 
 
 
/* Buy Me a Coffee Button - Centered */
.bmc-button-container {
    text-align: center;
    margin: 20px auto;
    display: block;
}

.bmc-button {
    margin: 0 auto !important;
    display: block !important;
}
-e 
/* Buy Me a Coffee Button - Perfectly Centered */
.bmc-button-container {
    text-align: center;
    margin: 20px auto;
    display: block;
    width: 100%;
    padding: 0;
    box-sizing: border-box;
}

.bmc-button-container script {
    display: inline-block;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .bmc-button-container {
        padding: 0;
        margin: 10px auto;
    }
}
