/* SELF CUSTODY 21 - LIGHT THEME */

/* 1. Main Background & Font (White Background, Standard Font) */
body, #app, .public-page-wrap {
    background-color: #ffffff !important;
    color: #2d3748 !important; /* Dark Grey/Black text */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
}

/* 2. Product Cards (Clean White Look) */
.card {
    background-color: #ffffff !important;
    border: 1px solid #e2e8f0 !important; /* Light Grey Border */
    border-radius: 12px !important;
}

/* Card Text Styling */
.card-title { color: #000000 !important; font-weight: bold; }
.card-text { color: #4a5568 !important; }
.text-muted { color: #718096 !important; }

/* 3. Buttons (Bitcoin Orange with White Text) */
.btn-primary {
    background-color: #F7931A !important;
    border-color: #F7931A !important;
    color: #ffffff !important;
    font-weight: bold !important;
}
.btn-primary:hover {
    background-color: #d67c10 !important; /* Slightly darker orange on hover */
    border-color: #d67c10 !important;
}

/* 4. Grid Layout: 3 Items Per Row (Computers Only) */
@media (min-width: 992px) {
    .row > div[class*='col-'] {
        flex: 0 0 33.333333% !important;
        max-width: 33.333333% !important;
    }
}