/* lives-frontend.css - Estilo customizado para o plugin Lives */

:root {
  --lives-primary: #0d6efd;
  --lives-bg: #f5f6fa;
  --lives-white: #fff;
  --lives-text: #222;
  --lives-muted: #888;
  --lives-success: #28a745;
  --lives-danger: #dc3545;
  --lives-warning: #ffc107;
  --lives-border: #e5e7eb;
}

.lives-header {
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    background: var(--lives-white);
}
.lives-header .fs-4 {
    color: var(--lives-primary);
    letter-spacing: 1px;
}
.lives-header nav a {
    transition: color 0.2s;
}
.lives-header nav a:hover {
    color: var(--lives-primary) !important;
}
.lives-dashboard .card {
    background: var(--lives-white);
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.lives-dashboard .card-body {
    padding: 2rem 2rem 1.5rem 2rem;
}
.lives-dashboard .bg-light {
    background: #f5f7fa !important;
}
.lives-dashboard .btn.disabled, .lives-dashboard .btn:disabled {
    opacity: 0.6;
    pointer-events: none;
}
.lives-dashboard .bi {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.07));
}
.lives-footer {
    background: var(--lives-white);
    color: var(--lives-muted);
    font-size: 0.95em;
}
.lives-login-ui .card {
    border-radius: 1rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}
.lives-login-ui .btn-dark {
    background: var(--lives-primary);
    border: none;
}
.lives-login-ui .btn-dark:hover {
    background: #084298;
}
.lives-login-ui .form-control:focus {
    border-color: var(--lives-primary);
    box-shadow: 0 0 0 0.2rem rgba(13,110,253,.15);
}
body, .lives-wrapper {
    overflow-x: hidden;
    width: 100vw;
    max-width: 100vw;
    background: var(--lives-bg);
    color: var(--lives-text);
}
body { background: var(--lives-bg); }
nav{
    margin-top: 50px;
}
.lives-sidebar {
    min-height: 100vh;
    background: var(--lives-white);
    border-right: 1px solid var(--lives-border);
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    position: fixed;
    top: 0; left: 0;
    width: 220px;
    z-index: 1030;
    padding-top: 56px;
}
.lives-sidebar .nav-link {
    color: var(--lives-text);
    font-weight: 500;
    border-radius: .5rem;
    margin-bottom: 4px;
    transition: background .2s, color .2s;
    font-size: 14px;
}
.lives-sidebar .nav-link.active, .lives-sidebar .nav-link:hover {
    background: var(--lives-primary);
    color: #fff !important;
}
.lives-main {
    width: calc(100vw - 220px);
    margin-left: 220px;
    padding-top: 70px;
    min-height: 100vh;
    overflow-x: auto;
}
@media (max-width: 991px) {
    .lives-sidebar { display: none; }
    .lives-main {
        margin-left: 0;
        width: 100vw;
    }
}
.lives-topbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1040;
    background: var(--lives-white);
    border-bottom: 1px solid var(--lives-border);
    height: 56px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.lives-topbar .navbar-brand {
    font-weight: bold;
    color: var(--lives-primary);
    letter-spacing: 1px;
}
.lives-topbar .nav-link {
    color: var(--lives-text);
    font-weight: 500;
}
.lives-topbar .nav-link:hover {
    color: var(--lives-primary);
}
.lives-dashboard .btn-primary, .lives-header .btn-primary {
    background: var(--lives-primary);
    border: none;
    color: #fff;
    border-radius: 0.5rem;
}
.lives-dashboard .badge.bg-primary {
    background: var(--lives-primary);
}
.lives-dashboard .badge.bg-success {
    background: var(--lives-success);
}
.lives-dashboard .badge.bg-danger {
    background: var(--lives-danger);
}
.lives-dashboard .badge.bg-warning {
    background: var(--lives-warning);
    color: #222;
}

/* === Página Comprar Créditos === */
.lives-credit-card {
  background: var(--lives-white);
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(30,30,45,0.07);
  border: 1px solid var(--lives-border);
  transition: box-shadow 0.2s, transform 0.2s;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.lives-credit-card:hover {
  box-shadow: 0 6px 24px rgba(30,30,45,0.13);
  transform: translateY(-2px) scale(1.01);
}
.lives-credit-card .card-body {
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lives-credit-card img {
  max-height: 90px;
  object-fit: contain;
  margin-bottom: 1rem;
}
.lives-credit-card h5 {
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--lives-primary);
}
.lives-credit-card .fs-4 {
  color: var(--lives-primary);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.lives-credit-card .small.text-muted {
  margin-bottom: 1rem;
  color: var(--lives-muted);
}
.lives-credit-card .badge {
  font-size: 0.95em;
  border-radius: 0.5rem;
  padding: 0.45em 0.9em;
  margin-bottom: 0.25em;
}
.lives-credit-card .badge.bg-primary {
  background: var(--lives-primary);
  color: #fff;
}
.lives-credit-card .badge.bg-info {
  background: var(--lives-accent);
  color: #fff;
}
.lives-credit-card .btn-primary {
  background: var(--lives-accent);
  border: none;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 1.08em;
  margin-top: 1rem;
  width: 100%;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(30,30,45,0.07);
}
.lives-credit-card .btn-primary:hover {
  background: var(--lives-primary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(30,30,45,0.13);
}
.alert{
    margin: 30px;
    margin-top: 50px;

}
@media (max-width: 991px) {
  .lives-credit-card .card-body {
    padding: 1.2rem 0.7rem 1rem 0.7rem;
  }
} 

.btn-outline-primary{
        --bs-btn-color: #e51922;
    --bs-btn-border-color: #e51922;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #e51922;
    --bs-btn-hover-border-color: #e51922;
    --bs-btn-focus-shadow-rgb: 13, 110, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #e51922;
    --bs-btn-active-border-color: #e51922;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #e51922;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #e51922;
    --bs-gradient: none;
}

.list-group-item.active {
       background-color: #e51922;
       border-color:  #e51922;
 }
 .btn-primary{
     --bs-btn-bg: #e51922;
    --bs-btn-border-color: #e51922;
 }
 .btn-primary:hover{
     background-color: #000;
 }
 
 .bg-primary {
    --bs-bg-opacity: 1;
    background-color: #e51922 !important;
}
@media (max-width: 767px) {
  .table td, .table th {
    font-size: 11px;
}
}

