@charset "UTF-8";

/* Change Status Toggler Css */
.change-status,
.vendor-change-status,
.site-change-status {
    font-size: 20px;
    opacity: 0.5;
}

.change-status .tgle-on,
.vendor-change-status .tgle-on,
.site-change-status .tgle-on {
    color: green;
}

.change-status .tgle-off,
.vendor-change-status .tgle-off,
.site-change-status .tgle-off {
    color: red;
}

#submit-btn:disabled {
    cursor: not-allowed;
}

/* Password View */
.pass-show {
    position: absolute;
    top: 4px;
    font-size: 16px;
    right: 15px;
    cursor: pointer;
}

.input-box {
    position: relative;
}

tbody td {
    vertical-align: middle;
}

.scrollable-cell {
    max-height: 100px;
    overflow: auto;
    white-space: pre-line;
}

.detail-row {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 15px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.detail-label {
    font-weight: 600;
    color: #666;
}

.detail-value {
    color: #222;
}

.rating-stars {
    color: #f5a623;
    font-size: 18px;
}

.review-box {
    background: #f8f9fa;
    padding: 16px;
    border-radius: 10px;
    line-height: 1.7;
}

.review-images {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.review-thumb {
    width: 129px;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid #ddd;
}

.status-badge {
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
}

.status-active {
    background: #e8f7ed;
    color: #1a7f37;
}

.approved-btn {
    width: 130px;
}

.review-status-card {
    margin-top: 20px;
}

.status-radio-group {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
}

.status-radio {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: 500;
}

.status-radio input[type="radio"] {
    cursor: pointer;
}

.update-info {
    margin-top: 20px;
    padding: 18px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 12px;
}

.update-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.update-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(226, 123, 0, 0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.update-title {
    font-size: 15px;
    font-weight: 600;
    color: #222;
}

.updated-by {
    font-size: 13px;
    color: #666;
}

.update-divider {
    height: 1px;
    background: #e5e5e5;
    margin: 15px 0;
}

.update-datetime {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.update-item {
    display: flex;
    flex-direction: column;
}

.update-label {
    font-size: 12px;
    color: #888;
    margin-bottom: 4px;
}

.update-value {
    font-size: 14px;
    font-weight: 600;
    color: #222;
}