a {
  color: #00B7FF;
}

body {
  background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('/images/391703336_122112261224072581_9044466511498656044_n.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 100vh;
}

/* Styles for login.ejs */
body.login-page {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 0;
  font: 14px "Lucida Grande", Helvetica, Arial, sans-serif;
}

/* Background class (kept for legacy if needed, but body now handles it) */
.home-bg {
  min-height: 100vh;
}

.login-container {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}

.pre-wrap {
  white-space: pre-wrap;
}

/* Styles from novo-pedido.ejs */
.prazo-entrega {
    color: red;
    font-weight: bold;
}
.product-card {
    background: #f8f9fa;
    border: 1px solid #ddd;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 5px;
    position: relative;
}
.product-card:hover {
    border-color: #ddd !important;
    box-shadow: none !important;
}
.remove-product {
    position: absolute;
    top: 10px;
    right: 10px;
}

/* Styles from editar-pedido.ejs */
.item-box { 
    border-left: 5px solid #0d6efd; 
    background-color: #f8f9fa; 
}
.item-box.deleted { 
    border-left-color: #dc3545; 
    opacity: 0.6; 
}
.new-item-box { 
    border-left: 5px solid #198754; 
    background-color: #e8f5e9; 
}

/* Styles from visualizar-pedidos.ejs */
.img-thumb { 
    max-height: 150px; 
    width: auto; 
}
.tab-pane { 
    padding-top: 20px; 
}
.status-badge { 
    font-size: 1.2em; 
}

/* Styles from lista-pedidos.ejs */
.text-danger-custom {
    color: #dc3545 !important;
    font-weight: bold;
}

.bg-lilas {
    background-color: #cdb4db !important;
}

.btn-lilas {
    background-color: #cdb4db;
    border-color: #cdb4db;
    color: #212529;
}

.btn-lilas:hover {
    background-color: #bfa0c7;
    border-color: #bfa0c7;
    color: #212529;
}

#btn-calculo {
    display: flex;
    justify-content: center; /* Centraliza Horizontalmente (Esquerda/Direita) */
    align-items: center;     /* Centraliza Verticalmente (Cima/Baixo) */
    height: 100vh;
}

/* Version Footer */
.version-footer {
    position: fixed;
    bottom: 10px;
    left: 10px;
    font-size: 0.8rem;
    color: #000000; /* text-muted lighter */
    z-index: 1050;
    pointer-events: none;
    font-family: sans-serif;
    opacity: 0.7;
}

.form-control-xs {
    height: calc(1.5em + 0.25rem + 2px);
    padding: 0.125rem 0.25rem;
    font-size: 0.75rem;
    border-radius: 0.2rem;
}

.btn-xs {
    padding: 0.1rem 0.3rem;
    font-size: 0.7rem;
    line-height: 1.2;
    border-radius: 0.2rem;
}