:root {
 --bs-card-cap-bg:#dcd3c4;
}

/* Manrope Font */
@font-face {
  font-family: 'Manrope';
  src: url('../fonts/Manrope/static/Manrope-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Manrope';
  src: url('../fonts/Manrope/static/Manrope-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Manrope';
  src: url('../fonts/Manrope/static/Manrope-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Manrope';
  src: url('../fonts/Manrope/static/Manrope-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Manrope';
  src: url('../fonts/Manrope/static/Manrope-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Manrope';
  src: url('../fonts/Manrope/static/Manrope-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Manrope';
  src: url('../fonts/Manrope/static/Manrope-ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

/* Twemoji Country Flags Font */
@font-face {
  font-family: 'Twemoji Country Flags';
  src: url('../fonts/TwemojiCountryFlags.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'LCD-Bold';
  src: url('../fonts/LCD-BOLD.woff2') format('woff2');
  font-weight: 700;
  font-style: monospace;
  font-display: swap;
}
/* Custom CSS for Samanta CRM */
html, body {
  height: 100%;
  font-family: 'Manrope', 'Twemoji Country Flags', 'LCD-Bold', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
   background-color: var(--bs-dark-bg-subtle);}
}
main {
  overflow:auto;
  padding-bottom:150px; /* this needs to be bigger than footer height*/
}
.digital-clock-digits{
    font-family: 'LCD-Bold', monospace;
}
footer {
  position: relative;
  margin-top: -150px; /* negative value of footer height */
 
  clear:both;
  padding-top:20px;
} 
.list-group-item-action:not(.active):focus, .list-group-item-action:not(.active):hover {
    z-index: 1;
    color: var(--bs-danger-border-subtle);
    text-decoration: none;
    background-color: var(--bs-list-group-action-hover-bg);
}
/* Login Page Styles */
.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
     background: linear-gradient(135deg, var(--bs-warning-text-emphasis) 0%, var(--bs-code-color) 100%);
}

.login-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 400px;
}

/* Dashboard Cards */
.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

.card:hover {
    transform: translateY(-2px);
}

/* Navigation */
.navbar-brand {
    font-weight: bold;
}

/* Tables */
.table th {
    border-top: none;
    font-weight: 600;
    color: #6c757d;
    text-transform: uppercase;
    font-size: 0.875rem;
}

.table-hover tbody tr:hover {
    background-color: rgba(0,123,255,0.05);
}

/* Buttons */
.btn {
    border-radius: 6px;
    font-weight: 500;
}

.btn-group-sm > .btn {
    border-radius: 4px;
}

/* Badges */
.badge {
    font-weight: 500;
}
.badge.bg-daily {background: #baebff;color: #0081b5;font-weight: bold;}

.badge.bg-additional{background: #ffdbdb;color: var(--bs-pink);font-weight: bold;}


#ingredientStockCard .pulse::before {
  content: " ";
  margin: 15px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  margin: 0 auto;
  transition: all 0.3s;
  background-color: #ffffff;
}

#ingredientStockCard .pulse::before {
  animation: mymove 2s infinite;
  position: absolute;
  background-color: rgba(var(--bs-warning-rgb));
}

@-webkit-keyframes mymove {
  50%   {
    transform: scale(2);
    opacity: 0
  }
  100%   {
    transform: scale(2);
    opacity: 0
  }
}
#productContainer .list-group-item {
    color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
      
    background: white;
}

/* Form Controls */
.form-control, .form-select {
    border-radius: 6px;
    border: 1px solid #ced4da;
}

.form-control:focus, .form-select:focus {
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Alerts */
.alert {
    border: none;
    border-radius: 8px;
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .login-form {
        margin: 1rem;
        padding: 1.5rem;
    }
    
    .btn-group-sm > .btn {
        padding: 0.25rem 0.5rem;
    }
}

/* Custom utility classes */
.text-primary-dark {
    color: #0056b3 !important;
}

.bg-light-blue {
    background-color: #e3f2fd !important;
}

/* Animation classes */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
div#logoUpload img {
    background-color: silver !important;
    padding: 10px !important;
}
/* Footer fixed to the bottom of the modal */
.modal-footer--sticky {
  position: sticky;
  bottom: 0;
  background-color: inherit; /* [1] */
  z-index: 1055; /* [2] */
}