body{
    background:#f4f7fb;
}

/* Navbar */

.navbar{
    box-shadow:0 2px 10px rgba(0,0,0,.15);
}

/* Menú */

.list-group-item{
    border:none;
    padding:15px;
    font-weight:500;
    transition:.3s;
}

.list-group-item:hover{
    background:#0d6efd;
    color:white;
    cursor:pointer;
}

.list-group-item.active{
    background:#0d6efd;
}

/* Tarjetas */

.card{
    border:none;
    border-radius:12px;
    margin-bottom:20px;
}

.card-header{
    font-weight:bold;
}

/* Botones */

.btn{
    border-radius:8px;
    font-weight:bold;
}

/* Precio */

#precioActual{
    color:#198754;
    font-size:42px;
    font-weight:bold;
    text-align:center;
}

/* Resumen */

#capital{
    color:#0d6efd;
    font-weight:bold;
}

#valorActual{
    color:#198754;
    font-weight:bold;
}

#ganancia{
    font-weight:bold;
}

/* Tabla */

.table thead{
    background:#0d6efd;
    color:white;
}

.table td,
.table th{
    vertical-align:middle;
}

/* Canvas */

#grafica{
    height:350px !important;
}

/* Responsive */

@media(max-width:991px){

    .list-group{
        margin-bottom:20px;
    }

    #precioActual{
        font-size:34px;
    }

}