
:root {
    --bs-dark: #10151a;
    --bs-body-bg: #10151a;
    /* Define custom color properties if needed, or rely on Bootstrap overrides */
    /* Example: --waibot-primary: #6366f1; */
}

/*
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    
    background-color: var(--bs-dark);
    color: var(--bs-body-secondary); 
}
*/


/*
html {
  font-size: 14px;
}*/

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

/*

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

*/

html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
}

main {
    flex: 1 0 auto; /* Push footer down */
}

/* devflow-store.css */

.hover-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border-radius: 12px;
}
.hover-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.tag-list .badge {
    font-size: 0.75rem;
    margin-top: 5px;
}

#tagFilters .btn {
    border-radius: 20px;
    background-color: #5b5c5d;
    font-weight: 500;
    transition: background-color 0.2s ease, color 0.2s ease;
}
    #tagFilters .btn.active {
        background-color: #10151a;
        /* rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) color: white;*/
        color: white;
        border-color: #0d6efd;
    }


a.navbar-brand {
    white-space: normal;
    text-align: center;
    word-break: break-all;
}
/*
a {
    color: #0077cc;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}
*/

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.border-top {
    border-top: 1px solid #e5e5e5;
}

.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
    font-size: 1rem;
    line-height: inherit;
}

/*
.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px;
}
*/


/* --- Footer --- */
.footer {
    font-size: 0.9rem;
}

    .footer h5 {
        font-size: 1rem;
        font-weight: 500;
        margin-bottom: 1rem;
    }

    .footer a.link-secondary {
        color: var(--bs-body-secondary); /* Ensure default footer link color */
    }

        .footer a.link-secondary:hover {
            text-decoration: underline !important;
        }

    .footer .bi { /* Footer icons */
        transition: color 0.2s ease-in-out;
    }

    .footer a:hover .bi {
        color: var(--bs-primary);
    }



body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: #f0f0f0; /*#f9f9f9;*/
    -webkit-font-smoothing: antialiased;
    color: #1d1d1f;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: auto;
/*    padding: 20px;*/
}

.card {
    background-color: #ffffff;
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
    }

    .card img {
        border-radius: 12px 12px 0 0;
        /*width: 100%;
        height: auto;*/
    }

.card-body {
    padding: 20px;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.card-text {
    font-size: 1rem;
    color: #6e6e73;
}

.btn {
    background-color: #5b5c5d;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 1rem;
    transition: background-color 0.2s ease;
}

    .btn:hover {
        background-color: #10151a;
        color: #ffffff;
    }





/* --- Navigation Bar --- */
.main-nav.navbar {
    background-color: rgba(var(--bs-dark-rgb), 0.99) !important; /* Slightly transparent dark */
    backdrop-filter: blur(10px); /* Blur effect for modern feel */
    border-bottom: 1px solid var(--bs-border-color-translucent);
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.navbar-brand span {
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: -0.05em;
}

.navbar .nav-link {
    color: var(--bs-body-secondary);
    font-weight: 500;
    padding-left: 1rem;
    padding-right: 1rem;
}

    .navbar .nav-link:hover,
    .navbar .nav-link.active {
        color: var(--bs-body-emphasis);
    }

.navbar .dropdown-menu {
    /* Ensure dropdown matches dark theme */
    --bs-dropdown-link-active-bg: var(--bs-primary);
}

/*svg logo*/
.logo {
    height: 35px;
    display: inline;
}

.logo-text {
    /*height: 24px;*/
    width: 110px;
    display: inline;
}
