/*
Theme Name: Velki Agent Light (v1)
Description: Light theme based on the Velki logo colors.
Version: 1.0
*/
body {
    margin: 0;
    font-family: Inter, Arial, Helvetica, sans-serif;
    background: #ffd400; /* Gold background from logo */
    color: #0f1111; /* Black text */
}

.velki-wrapper {
    max-width: 1100px;
    margin: 18px auto;
    padding: 20px;
    background: #ffd400;
}

.velki-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 10px;
    border-bottom: 2px solid #0f1111; /* Black border */
}

.velki-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.velki-logo img {
    height: 64px;
    width: auto;
    display: block;
}

.velki-title {
    font-size: 22px;
    font-weight: 800;
    color: #0f1111; /* Black title */
}

.velki-sub {
    font-size: 13px;
    color: #333; /* Dark gray sub-text */
}

.velki-date {
    font-size: 14px;
    color: #0f1111;
}

.velki-warning {
    margin-top: 10px;
    color: #ffd400; /* Gold text */
    background: #0f1111; /* Black background */
    padding: 8px;
    border-radius: 6px;
    font-weight: 700;
}

.velki-controls {
    margin: 14px 0;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.velki-search {
    padding: 10px 12px;
    border-radius: 8px;
    border: 2px solid #0f1111; /* Black border */
    background: #fff; /* White background for input */
    color: #0f1111;
    min-width: 260px;
}

.velki-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-btn {
    background: #0f1111; /* Black background for buttons */
    color: #ffd400; /* Gold text */
    border: 0;
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
}

.filter-btn.active {
    outline: 3px solid rgba(15, 17, 17, 0.2);
    box-shadow: inset 0 0 0 2px #ffd400;
}

.table-wrap {
    width: 100%;
    border-radius: 8px;
    background: transparent;
}

#velki-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

#velki-table thead th {
    background: #0f1111; /* Black header */
    color: #ffd400; /* Gold text */
    padding: 10px 12px;
    text-align: left;
    font-weight: 800;
}

#velki-table tbody td {
    padding: 10px 12px;
    border-bottom: 1px solid rgba(15, 17, 17, 0.1); /* Faint black border */
    color: #0f1111;
    word-break: break-word;
}

.whatsapp-btn {
    background: #25D366;
    border: 0;
    color: #fff;
    padding: 8px 10px;
    border-radius: 8px;
    display: inline-flex;
    gap: 8px;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
}

.wa-text {
    display: inline-block;
}

.report-btn {
    background: #000;
    border: 2px solid #000;
    color: #ffd400;
    padding: 8px 10px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 800;
}

/* Responsive - prevent horizontal scroll */
@media (max-width: 900px) {
    .velki-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .velki-logo img {
        height: 52px;
    }
    .velki-search {
        min-width: 100%;
    }
    #velki-table thead th,
    #velki-table tbody td {
        font-size: 13px;
        padding: 8px;
    }
}
#velki-table td,
#velki-table th {
    word-wrap: break-word;
    overflow-wrap: break-word;
}
