/* ================= BASE ================= */

.uacp-box,
.uacp-box * {
    color: #000;
    font-family: Inter, Arial, sans-serif;
}

.uacp-box {
    max-width: 1200px;
    margin: 40px auto;
    padding: 30px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0,0,0,.1);
}

.uacp-box label {
    font-weight: 600;
    display: block;
    margin-top: 15px;
}

.uacp-box input,
.uacp-box select {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
}

.uacp-btn {
    margin-top: 15px;
    padding: 10px 22px;
    background: #111;
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}

/* ================= STATS ================= */

.uacp-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
    gap: 25px;
    margin: 30px 0;
}

.stat {
    padding: 20px;
    border-radius: 14px;
    background: #f4f4f4;
    text-align: center;
}

.stat span {
    display: block;
    margin-top: 10px;
    font-size: 22px;
    font-weight: 700;
}

.stat.yellow { background: #fff3cd; }
.stat.green  { background: #d1e7dd; }
.stat.red    { background: #f8d7da; }

/* ================= TABLE ================= */

.uacp-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.uacp-table th,
.uacp-table td {
    padding: 12px;
    border-bottom: 1px solid #ddd;
    text-align: left;
}

.uacp-table a {
    color: #000;
    text-decoration: underline;
}

/* ================= STATUS BADGES ================= */

.uacp-status {
    display: inline-block;
    min-width: 120px;
    padding: 6px 14px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
}

/* Published */
.uacp-publish {
    background: #d1e7dd;
    color: #0f5132;
    border: 1px solid #badbcc;
}

/* Pending */
.uacp-pending {
    background: #fff3cd;
    color: #664d03;
    border: 1px solid #ffecb5;
}

/* Draft */
.uacp-draft {
    background: #f8d7da;
    color: #842029;
    border: 1px solid #f5c2c7;
}
