.btn-on-content {
  color: #FFF !important;
	text-decoration: none !important;
	cursor: pointer;
}

.btn-on-content:hover, 
.btn-on-content:active,
.btn-on-content:focus,
.btn-on-content:focus-visible {
  background: #ffffff;
  color: var(--primary-color) !important;
  border-color: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(0);
  outline: none;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--primary-color) 25%, transparent);
}

/* .app-booking-table */
.app-booking-table#confirmLinkTable {
	margin-top: 1em;
}
.app-booking-table table {
    width: 100%;
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    border-collapse: separate;
    border-spacing: 0;
    display: flex;
    flex-direction: column;
}

/* ENCABEZADO */
.app-booking-table thead {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    background: #f5f5f5;
    color: #000;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #000;
}

.app-booking-table th {
    padding: 16px 20px;
    text-align: left;
    font-size: 14px;
    text-transform: uppercase;
    border-right: 1px solid #e0e0e0;
}

.app-booking-table th:nth-child(2n) {
    border-right: none;
}

/* CUERPO */
.app-booking-table tbody {
    display: flex;
    flex-direction: column;
}

/* FILAS */
.app-booking-table tr {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-bottom: 1px solid #e0e0e0;
    transition: background-color 0.3s ease;
}

.app-booking-table tr:hover {
    background-color: #fafafa;
}

.app-booking-table tbody tr:nth-child(even) {
    background-color: #fff;
}

.app-booking-table tbody tr:nth-child(even):hover {
    background-color: #fafafa;
}

/* CELDAS */
.app-booking-table td {
    padding: 16px 20px;
    color: #000;
    font-size: 14px;
    line-height: 1.5;
    border-right: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
}

.app-booking-table td:nth-child(2n) {
    border-right: none;
}

/* ÚLTIMA CELDA - cubre 2 columnas */
.app-booking-table td:nth-child(5) {
    grid-column: 1 / -1;
    border-right: none;
    background-color: #f9f9f9;
    font-size: 13px;
    color: #333;
    font-style: normal;
    border-top: 1px solid #e0e0e0;
    padding: 16px 20px;
}

.app-booking-table tr:hover td:nth-child(5) {
    background-color: #f5f5f5;
}

/* Estilos para celdas específicas */
.app-booking-table td:nth-child(3) {
    font-weight: 600;
    color: #000;
    font-size: 14px;
}

.app-booking-table td:nth-child(4) {
    color: #000;
    font-weight: 500;
}

/* RESPONSIVE - Pantalla grande */
@media (min-width: 769px) {
    .app-booking-table thead {
        grid-template-columns: none;
    }
    
    .app-booking-table tr {
        grid-template-columns: repeat(5, 1fr);
    }
    
    .app-booking-table th {
        border-right: 1px solid #e0e0e0;
    }
    
    .app-booking-table th:last-child {
        border-right: none;
    }
    
    .app-booking-table td {
        border-right: 1px solid #e0e0e0;
    }
    
    .app-booking-table td:last-child {
        border-right: none;
    }
    
    .app-booking-table td:nth-child(5) {
        grid-column: auto;
        background-color: transparent;
        border-top: none;
        font-size: 14px;
        color: #333;
        font-style: normal;
        border-right: 1px solid #e0e0e0;
        padding: 16px 20px;
    }
    
    .app-booking-table tr:hover td:nth-child(5) {
        background-color: transparent;
    }
}

/* RESPONSIVE - Pantalla pequeña */
@media (max-width: 768px) {
    .app-booking-table thead {
        grid-template-columns: none;
    }
    
    .app-booking-table tr {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .app-booking-table th,
    .app-booking-table td {
        padding: 14px 16px;
        font-size: 13px;
    }
    
    .app-booking-table th {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .app-booking-table thead {
        grid-template-columns: none;
    }
    
    .app-booking-table tr {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .app-booking-table th,
    .app-booking-table td {
        padding: 12px 14px;
        font-size: 12px;
    }
    
    .app-booking-table th {
        font-size: 11px;
    }
}