.table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.table th {
    background-color: #007bff;
    color: white;
    padding: 12px;
    text-align: left;
    font-size: 16px;
}

.table td {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: left;
    font-size: 14px;
}

.text-success {
    color: #28a745;
}

.text-danger {
    color: #dc3545;
}

.text-muted {
    font-size: 12px;
    color: #666;
}

.btn-warning {
    background-color: #ffc107;
    border: none;
    padding: 8px 12px;
    font-size: 14px;
    color: black;
    cursor: pointer;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    font-weight: bold;
}

.btn-warning:hover {
    background-color: #e0a800;
}

canvas {
    max-width: 100%;
    height: 400px;
}


/*Faq**********************/
.faq-container {

    margin: auto;
}

.faq-item {
    margin-bottom: 10px;
    border-bottom: 1px solid #ddd;
    padding: 10px;
}

.faq-header {
    display: flex;
    align-items: center;
    cursor: pointer;
    background: #f8f9fa;
    padding: 10px;
    border-radius: 5px;
    justify-content: space-between;
}

.faq-number {
    background: yellow;
    color: black;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 50%;
    margin-right: 10px;
}

.faq-icon {
    font-size: 20px;
    margin-left: auto;
}

.faq-content {
    display: none;
    padding: 10px;
    background: #fff;
}
/** end*/
/* casas de cammbio**/

.exchange-house-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.exchange-house-item {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 10px;
    background: white;
    border-radius: 5px;
    margin-top: 10px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

/* Contenedor flotante en una sola fila */
.exchange-house-floating {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

/* Logo */
.exchange-house-logo img {
    width: 128px;
    height: 58px;
}

/* Precios */
.exchange-house-prices {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 150px;
}

.exchange-buy, .exchange-sell {
    font-size: 18px;
    font-weight: bold;
    padding: 5px;
}

.exchange-buy {
    color: #ED1C24;
}

.exchange-sell {
    color: #4D4B4B;
}

/* Botón de acción */
.exchange-button {
    background: black;
    color: white;
    padding: 8px 12px;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none;
}

/* Información oculta */
.exchange-house-info {
    display: none;
    background: #f1f1f1;
    padding: 8px;
    margin-top: 10px;
    border-radius: 5px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    font-size: 12px;
    color: #5E5757;
    width: 100%;
}

/* Mostrar información al hacer clic */
.exchange-house-item.active .exchange-house-info {
    display: block;
}
