/* Container */
#abn-lookup-container {
    margin: 40px auto;
    max-width: 600px;
    text-align: center;
    font-family: Arial, sans-serif;
}

/* Lookup Box */
.lookup-box {
    background-color: #ffffff;
    color: #262677;
    border: 2px solid #262677;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    margin: 40px auto;
    max-width: 700px;
}

/* Title */
.abn-lookup-title {
    color: #262677;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
}

/* Label */
.abn-lookup-label {
    display: block;
    color: #262677;
    margin-bottom: 10px;
    font-size: 16px;
    text-align: left;
}

/* Input */
#abn-lookup-form input[type="text"] {
    padding: 12px;
    width: 100%;
    max-width: 400px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 15px;
    font-size: 16px;
}

/* Button */
#abn-lookup-form button {
    padding: 12px 24px;
    background-color: #262677;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

#abn-lookup-form button:hover {
    background-color: #1b1b5e;
}

/* Results Table */
#lookup-results table {
    border-collapse: collapse;
    width: 100%;
    margin-top: 20px;
}

#lookup-results th,
#lookup-results td {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: left;
}

#lookup-results th {
    background-color: #262677;
    color: #ffffff;
}

/* No Results Message */
.no-results {
    margin-top: 20px;
    background-color: #f3f3f3;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    font-size: 16px;
}

/* Apply ABN Button */
.apply-abn-btn {
    display: inline-block;
    margin-top: 12px;
    background-color: #262677;
    color: #ffffff!important;
    padding: 10px 18px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

.apply-abn-btn:hover {
    background-color: #1b1b5e;
    color: #ffffff!important; /* <- asegúrate de mantener el texto blanco también en hover */
}


/* Estilo específico del enlace dentro del botón */
.apply-abn-btn,
.apply-abn-btn:visited,
.apply-abn-btn:hover,
.apply-abn-btn:focus,
.apply-abn-btn:active {
    color: #ffffff !important;
    text-decoration: none;
}
