.container {
    max-width: 1000px;
    margin: auto;
    padding: 2rem 1rem;
}
#card-numbers-container{
    flex-wrap: wrap;
    gap: 16px
}

.btn-primary {
    margin-top: 1.5rem;
    padding: 0.8rem 1.6rem;
    background: linear-gradient(90deg, #ff5959, #ffb3b3);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: #e95500;
}
.btn-primary-outline {
    margin-top: 1.5rem;
    padding: 0.8rem 1.6rem;
    color: white;
    cursor: pointer;
    font-weight: 600;
    background: transparent;
    transition: background 0.3s ease;
}
.btn-primary-outline:hover {
    background: linear-gradient(90deg, #ff5959, #ffb3b3);
}
.gradient-border {
    border: 1px solid;
    border-image: linear-gradient(90deg, #ff5959, #ffb3b3) 1;
}


.p-3{
    padding: 30px;
}
.p-1{
    padding: 10px;
}
.mt-3{
    margin-top: 10px;
}
.input-group {
    position: relative;
    width: 100%;
}
.input-group label{
    margin-bottom: 6px;
    display: block;
}
.input-group-2 {
    position: relative;
    display: flex;
    align-items: stretch;
    width: 100%;
}

.d-flex{
    display: flex;
}
.justify-content-between{
    justify-content: space-between;
}
.justify-content-center{
    justify-content: center;
}
.align-items-center{
    align-items: center;
}
.flex-column{
    flex-direction: column;
}

.table-custom {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
    font-size: 15px;
    margin-top: 10px;
}

.table-custom th {
    background: #1d3557;
    color: white;
    padding: 12px;
    text-align: center;
    font-weight: bold;
}

.table-custom td {
    border-bottom: 1px solid #ddd;
    padding: 10px;
    text-align: center;
}

.table-custom tr:nth-child(even) {
    background: #f8f9fa21;
}

.table-custom tr:hover {
    background: #f8f9fa2e;
}

.table-custom .text-end {
    text-align: right !important;
}

/* Estilo especial para los íconos */

.table-custom i {
    font-size: 18px;
    vertical-align: middle;
}

/* Estilo especial para los íconos */

.remove-card {
    position: absolute;
    top: 8px;
    right: 8px;
    border: none;
    background: #d33;
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
}

.card-number {
    position: relative;
    max-width: 420px;
    padding: 16px;
    border: 1px solid #dddddd1a;
    border-radius: 14px;
    margin-bottom: 16px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
    background: #ffffff1a;
    color: #fff;
}

.form-row {
    margin-bottom: 14px;
    display: flex;
    flex-direction: column;
}

.form-row label {
    font-weight: 600;
    margin-bottom: 6px;
}

.input {
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 15px;
    width: 100%;
    outline: none;
    transition: .2s;
}

.input:focus {
    border-color: #2cc070;
    box-shadow: 0 0 4px rgba(255,183,3,1);
}

.group {
    display: flex;
    gap: 8px;
}

.btn-icon {
    background: #f3f3f3;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 0 14px;
    font-size: 18px;
    cursor: pointer;
    transition: .2s;
}

.btn-icon:hover {
    background: #ff5959;
    color: #fff;
    border-color: #ff5959;
}

.number-input {
    flex: 1;
    font-size: 30px;
    text-align: center;
}

.center {
    text-align: center;
}

.result-box {
    margin-top: 12px;
    padding: 12px;
    border-top: 1px solid #ffb3b3;
    display: flex;
    justify-content: space-between;
    background-color: rgb(248 249 250 / 13%) !important;
}

.result-box .label {
    font-size: 13px;
    color: #7a7a7a;
}

.value {
    font-size: 20px;
    font-weight: 700;
}

.value.success {
    color: #1aaa55;
}

.container-bet{
    width: 50%;
    padding: 20px;
    border-radius: 10px;
    background: white;
    color: #0a58ca;
}

@media (min-width: 750px) and (max-width: 850px) {
    .container-bet{
        width: 55%;
    }
}
@media (min-width: 650px) and (max-width: 750px) {
    .container-bet{
        width: 65%;
    }
}
@media (min-width: 550px) and (max-width: 650px) {
    .container-bet{
        width: 75%;
    }
}
@media (min-width: 471px) and (max-width: 550px) {
    .container-bet{
        width: 90%;
    }
}
@media (max-width:471px){
    .container-bet{
        width: 100%;
    }
}


