iris_backend / src /index.css
sameer2026's picture
fix: ats resume builder UI and backend extraction handling
9d6cc86
body,
html,
#root {
margin: 0;
padding: 0;
height: 100%;
width: 100%;
box-sizing: border-box;
}
body {
margin: 0;
}
/* ===============================
Dark Select Dropdown (IRIS)
=============================== */
.dark-select {
background-color: #111827;
color: rgb(51, 8, 8);
border: 1px solid rgba(255, 255, 255, 0.2);
padding: 0.75rem;
border-radius: 0.5rem;
color-scheme: dark;
}
.dark-select option {
background-color: #111827;
color: rgb(4, 42, 31);
}
/* ===============================
Scrollbar Utilities
=============================== */
.hide-scrollbar::-webkit-scrollbar {
display: none;
}
.hide-scrollbar {
-ms-overflow-style: none;
/* IE and Edge */
scrollbar-width: none;
/* Firefox */
}
/* ===============================
Print Styles for Resume Builder
=============================== */
@media print {
body * {
visibility: hidden;
}
.resume-print-area,
.resume-print-area * {
visibility: visible;
}
/* Force ancestors to be static so absolute positioning aligns to the page */
body, html, #root, .no-print-bg {
position: static !important;
margin: 0 !important;
padding: 0 !important;
}
.hide-scrollbar {
position: absolute !important;
top: 0 !important;
left: 0 !important;
overflow: visible !important;
display: block !important;
}
.resume-print-area {
position: relative !important;
margin: 0 auto !important;
width: 100% !important;
max-width: none !important;
box-shadow: none !important;
background-color: white !important;
}
.no-print {
display: none !important;
}
@page {
margin: 0;
}
}