body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-image: url('images/cover-2.jpg');
    background-size: cover;
    background-position: center;
}

.verification-box {
    background-color: #fff;
    padding: 40px 20px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 350px;
    width: 100%;
    border: 1px solid #ccc;
}

.verification-box .icon {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
}

.verification-box h5 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #343a40;
}

.verification-box p {
    margin-bottom: 20px;
    color: #6c757d;
}

.btn-custom {
    background-color: #343a40;
    color: #fff;
    padding: 10px 30px;
    border: none;
    border-radius: 5px;
    width: 100%;
    font-size: 1rem;
    transition: background-color 0.3s, color 0.3s;
}

.btn-custom:hover {
    background-color: #0e89db;
    color: #fff;
}

.unique-code {
    margin-top: 15px;
    font-size: 0.85em;
    color: #6c757d;
    word-break: break-all;
}

.offers {
    text-decoration: none;
    width: 90%;
}

.offer-load {
    display: none;
    flex-direction: column;
    gap: 4px;
    justify-content: center;
    align-items: center;
}

.offerplace {
    display: flex;
    align-items: center;
    border-radius: 6px;
    padding: 3px;
    gap: 4px;
    transition: background-color 0.3s, color 0.3s;
    background-color: #6c757d;
    border: 2px solid #343a40;
    color: #fff;
}

.offerplace:hover {
    background-color: #0688b8;
}

.offer-details {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    color: #fff;
    padding: 3px 0px;
    text-align: center;
}

.offer-details #title {
    display: inline-block;
    max-width: auto;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
}