:root {
    /* Colors */
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --success-color: #198754;
    --info-color: #0dcaf0;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --light-color: #f8f9fa;
    --dark-color: #212529; /* Text colors */
    --foreground-color: #212529; /* Bootstrap body-color */
    --muted-color: #6c757d; /* Bootstrap text-muted */ /* Backgrounds */
    --background-color: #ffffff; /* Bootstrap body-bg */
    --surface-color: #ffffff; /* κάρτες, panels */
    --surface-foreground-color: #212529;
    --border-color: #dee2e6; /* Bootstrap border-color */
    /* Typography */
    --font-size-base: 14px;
    --font-size-lg: 16px;
    /*--font-family: "Inter", sans-serif;*/
    /* Focus */
    --focus-ring-color: #258cfb;
    --focus-ring-inner: white;
    /* Global Card*/
    --card-radius: 6px;
    --card-shadow: 0 2px 6px rgba(0,0,0,0.08);
    --card-border: 1px solid #e5e5e5;
    /* Category Card */
    --category-catalog-card-width: 180px;
    --category-catalog-card-height: 180px;
    --category-catalog-card-padding: 8px; /*body*/
    --category-catalog-card-background-color: white;
    --category-catalog-card-body-background-color: whitesmoke;
    --category-catalog-card-fit: cover;
    /* Product Card */
    --product-catalog-card-width: 160px;
    --product-catalog-card-height: 180px;
    --product-catalog-card-padding: 0px;
    --product-catalog-card-fit: cover;
    /*--catalog-img-width: 180px;*/
    /* Catalog Product Card*/
    /*--product-img-height: 220px;*/
}


html {
    font-size: var(--font-size-base);
    position: relative;
    min-height: 100%;
    /*font-family: var(--font-family);*/
}

@media (min-width: 768px) {
  html {
    font-size: var(--font-size-lg);
  }
}

body {
    margin-bottom: 60px;
    background: var(--background-color);
    color: var(--foreground-color);
    /*font-family: var(--font-family);*/
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem var(--focus-ring-inner), 0 0 0 0.25rem var(--focus-ring-color);
}


/* font-awesome */
.fa-sort {
    /* color: cornflowerblue; */
}

.fas, .far {
    margin-left: 4px;
    margin-right: 4px;
}

    .fas.mono, .far.mono {
        color: gray;
    }

.fa-plus-circle.color {
    color: limegreen;
}

.fa-arrow-alt-circle-left {
    color: yellowgreen;
}

.collection {
    text-decoration: none;
}

.btn-xs {
    padding: 1px 5px !important;
    font-size: 12px !important;
    line-height: 1.5 !important;
    border-radius: 3px !important;
}

.filename {
    font-size: x-small;
    line-height: normal;
    display: block;
    /*padding-top: 0.2rem;*/
}


/* autocomplete */

.autocomplete-dropdown {
    border: 1px solid #ced4da;
    border-radius: .25rem;
    background: white;
}

.autocomplete-dropdown .list-group-item {
    cursor: pointer;
    padding: .375rem .75rem;
    border: none;
}

.autocomplete-dropdown .list-group-item:hover {
    background-color: #0b5ed7; /* darker primary */
    color: #fff;
}

.category-catalog-card {
    width: var(--category-catalog-card-width);
    background-color: var(--category-catalog-card-background-color);
    overflow: hidden;
}

.category-catalog-card img {
    height: var(--category-catalog-card-height);
    object-fit: var(--category-catalog-card-fit);
}
.category-catalog-card .card-body {
    border-top: 1px solid rgba(0, 0, 0, 0.125);
    background-color: var(--category-catalog-card-body-background-color);
    padding: var(--category-catalog-card-padding);
}


.product-catalog-card {
    width: var(--product-catalog-card-width);    
    border: none;
}
.product-catalog-card img {    
    object-fit: var(--product-catalog-card-fit);
    height: var(--product-catalog-card-height);
}
.product-catalog-card .border {
    border: var(--card-border);
    border-radius: var(--card-radius);
    padding: var(--product-catalog-card-padding);    
}


.product-card{
}
.product-card .product-properties {
}


.small-inputs .form-control,
.small-inputs .form-select {
    padding: .25rem .5rem;
    font-size: .85rem;
    height: 32px;
}

.small-inputs .form-label {
    margin-bottom: .2rem;
}






