/* ========================================================
   LOGS ORDER CSS - VINZZCLOUD
   ======================================================== */

.log-box {
    background: var(--bg-panel);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.status-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.status-pending {
    background: rgba(250, 204, 21, 0.15);
    color: #facc15;
    border: 1px solid #facc15;
}

.status-lunas {
    background: rgba(74, 222, 128, 0.15);
    color: #4ade80;
    border: 1px solid #4ade80;
}

.status-ditolak {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border: 1px solid #ef4444;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 14px;
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    color: var(--text-gray);
}

.info-value {
    font-weight: 600;
    color: var(--text-main);
    text-align: right;
}

.btn-refresh {
    background: var(--border-light);
    color: var(--text-main);
    border: none;
    padding: 10px 18px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    font-size: 13px;
    transition: opacity 0.2s;
}

.btn-refresh:hover {
    opacity: 0.8;
}

.btn-upload {
    width: 100%;
    background: #38bdf8;
    color: #0f172a;
    border: none;
    padding: 12px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    font-size: 14px;
    transition: opacity 0.2s;
}

.btn-upload:hover {
    opacity: 0.9;
}

.btn-upload:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }
