:root {
--primary: #0059A5;
--primary-dark: #004080;
--secondary: #6ACCEB;
--secondary-light: #e8f6fd;
--white: #fff;
--gray-50: #f9fafb;
--gray-100: #f3f4f6;
--gray-200: #e5e7eb;
--gray-300: #d1d5db;
--gray-400: #9ca3af;
--gray-500: #6b7280;
--gray-600: #4b5563;
--gray-700: #374151;
--gray-800: #1f2937;
--shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08);
--radius: 12px;
--radius-sm: 8px;
--radius-xs: 6px;
--green: #10b981;
--amber: #f59e0b;
--gray-silver: #a8aeb8;
--bronze: #cd7f32;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Inter', sans-serif;
background: #f5f7fa;
color: var(--gray-800);
}
.navbar {
background: var(--white);
border-bottom: 1px solid var(--gray-200);
padding: 0 32px;
display: flex;
align-items: center;
justify-content: space-between;
height: 80px;
box-shadow: var(--shadow);
}
.navbar-left {
display: flex;
align-items: center;
gap: 16px;
}
.navbar-logo {
height: 48px;
width: auto;
}
.navbar-separator {
width: 1px;
height: 32px;
background: var(--gray-300);
}
.navbar-title {
font-size: 18px;
font-weight: 600;
color: var(--gray-800);
}
.navbar-user {
display: flex;
align-items: center;
gap: 12px;
}
.user-avatar {
width: 44px;
height: 44px;
border-radius: 50%;
background: var(--secondary);
display: flex;
align-items: center;
justify-content: center;
font-weight: 600;
color: var(--white);
font-size: 14px;
}
.user-info {
text-align: right;
}
.user-name {
font-size: 14px;
font-weight: 600;
color: var(--gray-800);
}
.user-role {
font-size: 12px;
color: var(--gray-500);
}
.container {
display: flex;
height: calc(100vh - 80px);
}
.sidebar {
width: 300px;
background: var(--white);
border-right: 1px solid var(--gray-200);
display: flex;
flex-direction: column;
overflow-y: auto;
}
.sidebar-header {
padding: 24px 20px;
border-bottom: 1px solid var(--gray-200);
}
.sidebar-title {
font-size: 16px;
font-weight: 700;
color: var(--gray-800);
margin-bottom: 12px;
display: flex;
align-items: center;
gap: 8px;
}
.pending-badge {
background: var(--primary);
color: var(--white);
font-size: 11px;
font-weight: 600;
padding: 4px 8px;
border-radius: var(--radius-xs);
}
.stats-row {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
gap: 8px;
margin-top: 12px;
}
.stat-card {
background: var(--gray-50);
padding: 12px 10px;
border-radius: var(--radius-sm);
text-align: center;
}
.stat-value {
font-size: 18px;
font-weight: 700;
color: var(--primary);
}
.stat-label {
font-size: 10px;
color: var(--gray-500);
margin-top: 4px;
}
.student-list {
flex: 1;
padding: 12px;
overflow-y: auto;
}
.student-item {
padding: 12px;
border-radius: var(--radius-sm);
cursor: pointer;
margin-bottom: 8px;
transition: all 0.2s;
border-left: 3px solid transparent;
display: flex;
gap: 12px;
align-items: center;
}
.student-item:hover {
background: var(--gray-50);
}
.student-item.active {
background: var(--secondary-light);
border-left-color: var(--primary);
}
.student-avatar {
width: 40px;
height: 40px;
border-radius: 50%;
background: var(--secondary);
display: flex;
align-items: center;
justify-content: center;
font-weight: 600;
color: var(--white);
font-size: 13px;
flex-shrink: 0;
}
.student-info {
flex: 1;
min-width: 0;
}
.student-name {
font-size: 13px;
font-weight: 600;
color: var(--gray-800);
}
.student-program {
font-size: 11px;
color: var(--gray-500);
margin-top: 2px;
}
.student-ready {
font-size: 10px;
color: var(--green);
font-weight: 500;
margin-top: 2px;
}
.main-content {
flex: 1;
padding: 32px;
background: #f5f7fa;
overflow-y: auto;
}
.header-section {
margin-bottom: 32px;
}
.student-header {
font-size: 32px;
font-weight: 700;
color: var(--gray-800);
margin-bottom: 4px;
}
.student-meta {
font-size: 14px;
color: var(--gray-600);
}
.section-title {
font-size: 18px;
font-weight: 700;
color: var(--gray-800);
margin-bottom: 20px;
margin-top: 24px;
}
.matches-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
margin-bottom: 32px;
}
.match-card {
background: var(--white);
border-radius: var(--radius);
padding: 24px;
box-shadow: var(--shadow-md);
transition: all 0.3s;
border: 2px solid transparent;
position: relative;
}
.match-card:hover {
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}
.match-card.selected {
border-color: var(--primary);
background: #f0f6fb;
}
.match-header {
display: flex;
align-items: flex-start;
gap: 16px;
margin-bottom: 20px;
}
.rank-badge {
width: 40px;
height: 40px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
color: var(--white);
font-size: 16px;
flex-shrink: 0;
}
.rank-badge.rank-1 {
background: var(--amber);
}
.rank-badge.rank-2 {
background: var(--gray-silver);
}
.rank-badge.rank-3 {
background: var(--bronze);
}
.mentor-photo {
width: 56px;
height: 56px;
border-radius: 50%;
background: var(--secondary);
display: flex;
align-items: center;
justify-content: center;
font-weight: 600;
color: var(--white);
font-size: 18px;
flex-shrink: 0;
}
.mentor-info-section {
flex: 1;
}
.mentor-name {
font-size: 15px;
font-weight: 700;
color: var(--gray-800);
}
.mentor-specialty {
font-size: 13px;
color: var(--gray-600);
margin-top: 2px;
}
.mentor-years {
font-size: 12px;
color: var(--gray-500);
margin-top: 4px;
}
.recommended-pill {
display: inline-block;
background: var(--green);
color: var(--white);
font-size: 10px;
font-weight: 600;
padding: 4px 10px;
border-radius: var(--radius-xs);
margin-top: 6px;
}
.score-section {
text-align: center;
padding: 20px;
background: var(--gray-50);
border-radius: var(--radius-sm);
margin-bottom: 20px;
position: relative;
}
.score-circle {
position: relative;
width: 100px;
height: 100px;
margin: 0 auto 12px;
}
.score-circle svg {
transform: rotate(-90deg);
width: 100%;
height: 100%;
}
.score-circle-bg {
fill: none;
stroke: var(--gray-200);
stroke-width: 6;
}
.score-circle-progress {
fill: none;
stroke: var(--primary);
stroke-width: 6;
stroke-linecap: round;
transition: stroke-dashoffset 0.5s;
}
.score-text {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
}
.score-value {
font-size: 28px;
font-weight: 700;
color: var(--primary);
}
.score-label {
font-size: 11px;
color: var(--gray-500);
margin-top: 2px;
}
.score-title {
font-size: 14px;
font-weight: 600;
color: var(--gray-800);
margin-bottom: 8px;
}
.dimensions {
margin-bottom: 20px;
}
.dimension {
margin-bottom: 14px;
}
.dimension-label {
display: flex;
justify-content: space-between;
margin-bottom: 6px;
}
.dimension-name {
font-size: 12px;
font-weight: 500;
color: var(--gray-700);
}
.dimension-percent {
font-size: 12px;
font-weight: 600;
color: var(--primary);
}
.dimension-bar {
width: 100%;
height: 6px;
background: var(--gray-200);
border-radius: var(--radius-xs);
overflow: hidden;
}
.dimension-fill {
height: 100%;
background: var(--primary);
border-radius: var(--radius-xs);
transition: width 0.5s;
}
.ai-reasoning {
background: var(--secondary-light);
padding: 12px;
border-radius: var(--radius-sm);
margin-bottom: 20px;
border-left: 3px solid var(--secondary);
}
.ai-reasoning-label {
font-size: 10px;
font-weight: 600;
color: var(--primary);
margin-bottom: 6px;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.ai-reasoning-text {
font-size: 12px;
line-height: 1.5;
color: var(--gray-700);
}
.select-btn {
width: 100%;
padding: 12px;
border-radius: var(--radius-sm);
font-size: 13px;
font-weight: 600;
border: none;
cursor: pointer;
transition: all 0.2s;
}
.select-btn.primary {
background: var(--primary);
color: var(--white);
}
.select-btn.primary:hover {
background: var(--primary-dark);
}
.select-btn.outline {
background: var(--white);
color: var(--primary);
border: 2px solid var(--primary);
}
.select-btn.outline:hover {
background: var(--secondary-light);
}
.select-btn.selected {
background: var(--primary);
color: var(--white);
}
.admin-section {
background: var(--white);
padding: 24px;
border-radius: var(--radius);
box-shadow: var(--shadow-md);
}
.admin-label {
font-size: 14px;
font-weight: 600;
color: var(--gray-800);
margin-bottom: 12px;
}
.admin-notes {
width: 100%;
padding: 12px;
border: 1px solid var(--gray-300);
border-radius: var(--radius-sm);
font-family: 'Inter', sans-serif;
font-size: 13px;
resize: vertical;
min-height: 100px;
color: var(--gray-800);
margin-bottom: 20px;
}
.admin-notes:focus {
outline: none;
border-color: var(--primary);
box-shadow: 0 0 0 3px rgba(0, 89, 165, 0.1);
}
.confirm-btn {
width: 100%;
padding: 16px;
background: var(--primary);
color: var(--white);
border: none;
border-radius: var(--radius-sm);
font-size: 15px;
font-weight: 600;
cursor: pointer;
transition: all 0.2s;
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
}
.confirm-btn:hover {
background: var(--primary-dark);
}
.confirm-btn:disabled {
background: var(--gray-300);
cursor: not-allowed;
}
.modal-overlay {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.4);
z-index: 1000;
align-items: center;
justify-content: center;
}
.modal-overlay.active {
display: flex;
}
.modal {
background: var(--white);
border-radius: var(--radius);
padding: 48px 40px;
text-align: center;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
max-width: 420px;
}
.success-checkmark {
width: 80px;
height: 80px;
border-radius: 50%;
background: var(--green);
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 24px;
animation: scaleIn 0.5s ease-out;
}
.success-checkmark svg {
width: 50px;
height: 50px;
color: var(--white);
stroke: var(--white);
stroke-width: 2;
fill: none;
stroke-linecap: round;
stroke-linejoin: round;
animation: checkAnimation 0.6s ease-out 0.3s both;
}
@keyframes scaleIn {
from {
transform: scale(0);
opacity: 0;
}
to {
transform: scale(1);
opacity: 1;
}
}
@keyframes checkAnimation {
from {
stroke-dasharray: 100;
stroke-dashoffset: 100;
}
to {
stroke-dasharray: 100;
stroke-dashoffset: 0;
}
}
.modal-title {
font-size: 24px;
font-weight: 700;
color: var(--gray-800);
margin-bottom: 12px;
}
.modal-subtitle {
font-size: 16px;
font-weight: 600;
color: var(--primary);
margin-bottom: 8px;
}
.modal-text {
font-size: 13px;
color: var(--gray-600);
margin-bottom: 28px;
}
.modal-btn {
width: 100%;
padding: 14px;
background: var(--primary);
color: var(--white);
border: none;
border-radius: var(--radius-sm);
font-size: 14px;
font-weight: 600;
cursor: pointer;
transition: all 0.2s;
}
.modal-btn:hover {
background: var(--primary-dark);
}
.sidebar::-webkit-scrollbar,
.main-content::-webkit-scrollbar {
width: 6px;
}
.sidebar::-webkit-scrollbar-track,
.main-content::-webkit-scrollbar-track {
background: transparent;
}
.sidebar::-webkit-scrollbar-thumb,
.main-content::-webkit-scrollbar-thumb {
background: var(--gray-300);
border-radius: 3px;
}
.sidebar::-webkit-scrollbar-thumb:hover,
.main-content::-webkit-scrollbar-thumb:hover {
background: var(--gray-400);
}
.card-checkmark {
position: absolute;
top: 12px;
right: 12px;
width: 24px;
height: 24px;
border-radius: 50%;
background: var(--green);
display: none;
align-items: center;
justify-content: center;
color: var(--white);
font-size: 14px;
font-weight: 700;
}
.match-card.selected .card-checkmark {
display: flex;
}
