/* Subtitle / Institution metadata list */
.vnc-inst {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    row-gap: 8px;
    column-gap: 16px;
    font-size: 13.5px;
    color: #646970;
    margin-top: 10px;
}
.vnc-inst-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    line-height: 1;
}
.vnc-inst-item .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
    color: #8c8f94;
}
/* Bullet style separator using CSS to avoid layout wrapping bugs */
.vnc-inst-item:not(:last-child)::after {
    content: "•";
    margin-left: 16px;
    color: #c3c4c7;
    font-size: 14px;
}

/* Status Badges */
.vnc-status-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid #dcdcde;
    background: #f0f0f1;
    color: #3c434a;
}
.vnc-status-pending { background: #fcf0c0; color: #503e00; border-color: #f5e395; }
.vnc-status-under-review { background: #d9ebfc; color: #003a70; border-color: #b0d4f5; }
.vnc-status-shortlisted { background: #daf7a6; color: #235400; border-color: #bde778; }
.vnc-status-selected { background: #c6ebd9; color: #005221; border-color: #8ed5af; }
.vnc-status-rejected { background: #fbe3e4; color: #8a1f11; border-color: #f7c3c5; }

/* Grid Layout for details */
.vnc-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 15px;
}
.vnc-detail-grid > div {
    background: #f6f7f7;
    padding: 12px 16px;
    border-radius: 4px;
    border-left: 3px solid #2271b1;
    font-size: 13.5px;
    line-height: 1.5;
    color: #2c3338;
}
.vnc-detail-grid strong {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    color: #646970;
    margin-bottom: 6px;
    letter-spacing: 0.3px;
}

/* Project snapshot sub-blocks */
.snapshot-block {
    margin-bottom: 22px;
    border-bottom: 1px solid #f0f0f1;
    padding-bottom: 18px;
}
.snapshot-block:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}
.snapshot-block h4 {
    margin: 0 0 10px 0;
    font-size: 14px;
    color: #1d2327;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.snapshot-block p {
    margin: 0;
    font-size: 13.5px;
    line-height: 1.6;
    color: #444;
}
.vnc-preserve-lines {
    white-space: pre-line;
}

/* Score evaluation block */
.vnc-score-wrapper {
    background: #f6f7f7;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 18px;
    border: 1px solid #dcdcde;
}
.vnc-score-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 13px;
}
.vnc-score-header strong {
    font-size: 16px;
    color: #2271b1;
}

/* Download buttons container and Button Flex Overrides */
.vnc-detail-files {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 10px 0;
}

/* Forces vertical-alignment correction for dashicons inside both anchors and button inputs */
.vnc-detail-files .button,
.vnc-interview-box .button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    height: 32px !important;
    line-height: 1 !important;
    padding: 0 12px !important;
}
.vnc-detail-files .button .dashicons,
.vnc-interview-box .button .dashicons {
    font-size: 16px !important;
    width: 16px !important;
    height: 16px !important;
    margin: 0 !important;
    line-height: 1 !important;
    display: inline-block !important;
}

/* Update status select block wrapper */
.vnc-form-row {
    display: flex;
    gap: 12px;
    align-items: center;
}

/* Action Log History Timeline */
.vnc-action-log-list {
    max-height: 280px;
    overflow-y: auto;
}
.vnc-log-entry {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 15px;
    border-bottom: 1px solid #f0f0f1;
}
.vnc-log-entry:last-child {
    border-bottom: none;
}
.vnc-log-entry span:first-child {
    color: #8c8f94;
    font-size: 16px;
    flex: 0 0 auto;
    margin-top: 1px;
}
.vnc-log-entry span:nth-child(2) {
    font-size: 12.5px;
    line-height: 1.4;
    color: #2c3338;
    flex: 1;
}
.vnc-log-entry small {
    font-size: 11px;
    color: #8c8f94;
    white-space: nowrap;
    flex-shrink: 0;
    margin-left: 10px;
}

/* Interview Box adjustments */
.vnc-interview-box {
    background: #f0f6fc !important;
    border-color: #a2c2e8 !important;
}
.vnc-interview-box .hndle {
    border-bottom-color: #d1e3f5 !important;
}
.vnc-form-group {
    margin-bottom: 15px;
}
.vnc-form-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 600;
}
