
.vela-search-box {
    margin-bottom: 20px;
    text-align: center;
}
#vela-search {
    padding: 10px;
    width: 80%;
    max-width: 400px;
    border-radius: 8px;
    border: none;
}

.vela-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.vela-card {
    background: #000;
    color: #fff;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 0 5px rgba(255,255,255,0.2);
}

.vela-img img {
    width: 48px;
    height: 48px;
}

.vela-info {
    flex: 1;
    font-size: 14px;
}

button.ler-mais {
    background: none;
    border: none;
    color: #00f;
    cursor: pointer;
    font-size: 12px;
}

.vela-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
}

.vela-modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    color: #000;
}

.vela-close {
    color: #000;
    float: right;
    font-size: 20px;
    cursor: pointer;
}
