body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
    monospace;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
}
.avatar-section {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 20px;
  gap: 20px;
}

.toggle-group {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.switch-container {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
}

.switch-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.button-container {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
}

.create-ticket-btn {
  background-color: #007bff;
  color: white;
  padding: 10px 15px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

.ticket-list-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 20px;
}

.ticket-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  min-height: 250px;
}

/* Updated Header */
.ticket-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.ticket-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ticket-id-chip {
  background-color: #00838F;
  color: white;
  font-weight: bold;
}

.ticket-time {
  color: gray;
  font-size: 14px;
}

/* Updated Actions (Icons Moved Up) */
.ticket-actions {
  display: flex;
  gap: 5px;
}

/* Title & Description */
.ticket-title {
  font-size: 1.2rem;
  font-weight: bold;
}

.ticket-description {
  flex-grow: 1;
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 12px;
}

.read-more {
  color: #007bff;
  cursor: pointer;
  font-weight: bold;
}

/* Metadata */
.ticket-meta {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.meta-label {
  font-weight: bold;
  color: gray;
}

.team-avatar {
  background-color: #4CAF50;
  color: white;
}

.assignee-avatar {
  background-color: #FF9800;
  color: white;
}

.requester-avatar {
  background-color: #2196F3;
  color: white;
}

.priority-chip {
  background-color: #E1F5FE;
  color: #0277BD;
}

/* Resolve Button */
.resolve-button-container {
  display: flex;
  justify-content: flex-end;
  margin-top: auto;
}

.resolve-button {
  background-color: #1976D2 !important;
  color: white !important;
  text-transform: none;
}


/* Sidebar */
.sidebar {
  width: 60px;
  height: 100vh;
  background-color: #2f3542;
  color: white;
  transition: width 0.3s ease;
  position: fixed;
  overflow: hidden; /* Hide content that overflows when collapsed */
}
.sidebar.collapsed ul li span {
  opacity: 0; /* Hide text when collapsed */
  width: 0; /* Ensure text takes up no space */
  transform: translateX(-100%);
}
.sidebar.collapsed ul li {
  padding: 10px; 
  justify-content: center; /* Center icon when collapsed */
}
.sidebar.collapsed ul li .sidebar-icon {
  margin-right: 0; /* Remove right margin from icon in collapsed state */
}
.sidebar:hover {
  width: 200px; /* Expanded width when hovered */
}
.sidebar:hover + .main-content {
  margin-left: 200px; /* Adjust margin for expanded sidebar */
}
.sidebar ul {
  list-style-type: none;
  padding: 20px 0;
  margin: 0;
}

.sidebar ul li {
  padding: 10px;
  text-align: left; /* Align text to the left when expanded */
  display: flex;
  align-items: center; /* Vertically center icon and text */
  cursor: pointer; /* Add cursor pointer on hover */
  transition: background-color 0.2s ease; /* Add transition for hover effect */
  justify-content: flex-start;
  transition: padding 0.3s ease;
}

.sidebar ul li:hover {
  background-color: #576574;
}
.sidebar ul li.active {
  background-color: #3498db; /* Highlight the active link */
}
.sidebar ul li span {
  font-size: 16px;
  white-space: nowrap; /* Prevent text from wrapping */
  opacity: 1; /* Initially visible */
  transition: opacity 0.3s ease; 
  position: absolute;
  left: 60px; /* Position it to the right of the icon in expanded state */
  transform: translateX(0);
}

.sidebar:hover ul li span {
  display: inline-block;
  font-size: 14px;
  margin-left: 10px; /* Space between icon and text */
}

* Header styling */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background-color: #f8f9fa;
}

.header .logo {
  font-size: 24px;
  font-weight: bold;
}

.header .beta {
  color: #ffb400;
}

.header .user-profile {
  font-size: 16px;
}

.header .login-cta {
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.header .login-cta:hover {
  background-color: #0056b3;
}

/* Create Ticket button styling */
.create-ticket-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  margin-top: 10px; /* Adds space below login button */
  background-color: #28a745;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}

.create-ticket-btn i {
  margin-right: 8px; /* Space between icon and text */
}

.create-ticket-btn:hover {
  background-color: #218838;
}

.ticket-list.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  grid-gap: 16px;
  gap: 16px;
  align-items: stretch;
}

.ticket-list.smart {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ticket-list.panel {
  display: block;
}

.ticket-card.grid {
  width: 100%;
}

.ticket-card.smart {
  width: 100%;
  border-left: 5px solid #3f51b5;
}

.ticket-card.panel {
  width: 100%;
}


/* Modal Overlay */
.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1000;
}

/* Modal Container */
.modal-container {
	background: white;
	padding: 20px;
	width: 400px;
	border-radius: 8px;
	box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
	text-align: center;
}

/* Search Input */
.modal-container input {
	width: 100%;
	padding: 10px;
	margin-top: 10px;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-sizing: border - box;
}

/* Search Helper Text */
.search-helper {
	font-size: 12px;
	color: gray;
	margin-top: 5px;
}

/* Search Results */
.search-results {
	margin-top: 15px;
	background: #f8f9fa;
	padding: 10px;
	border-radius: 4px;
	min-height: 50px;
}

/* Add New Requester Button */
.add-requester-btn {
	width: 100%;
	background: #007bff;
	color: white;
	padding: 10px;
	border: none;
	border-radius: 4px;
	margin-top: 10px;
	cursor: pointer;
}

.add-requester-btn:hover {
	background: #0056b3;
}

/* Close Button */
.close-btn {
	width: 100%;
	background: #dc3545;
	color: white;
	padding: 10px;
	border: none;
	border-radius: 4px;
	margin-top: 10px;
	cursor: pointer;
}

.close-btn:hover {
	background: #c82333;
}

/* Search Requester Button in Header */
.search-requester-btn {
	padding: 10px 20px;
	background-color: #28a745;
	color: white;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}
.search-requester-btn:hover {
	background-color: #218838;
}
/* Icon Style */
.sidebar .icon {
  font-size: 30px;
  margin: 10px auto;
  display: block;
  text-align: center;
  cursor: pointer;
}
.sidebar:hover .icon {
  display: none; /* Hide hamburger icon when sidebar is expanded */
}

.sidebar ul li i {
  display: block; /* Show icon only in collapsed state */
  margin: 0 auto;
}
.sidebar ul li .sidebar-icon {
  font-size: 20px;
  margin-right: 10px; /* Space between icon and text */
  transition: margin-right 0.3s ease; /* Add transition for margin */
}
/* Show text when expanded */
.sidebar:hover ul li i {
  display: none;
}
.main-content {
  margin-left: 60px; /* Adjust margin for collapsed sidebar */
  padding: 20px;
  transition: margin-left 0.3s ease; /* Smooth transition for margin */
}
/* Header styles */
.header {
  background-color: #34495e;
  color: white;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header .logo {
  font-size: 18px;
  font-weight: bold;
}

.header .logo .beta {
  font-size: 12px;
  color: #f39c12;
  margin-left: 5px;
}

.header .user-profile {
  font-size: 14px;
}

/* Center the form */
.app-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #f5f5f5;
}

.modal-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 600px;
  background-color: white;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  padding: 20px;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee; /* Add a separator line */
  margin-bottom: 20px;
}
.modal-content {
  padding: 20px; /* Add padding to the content area */
}
/* Style for the profile picture upload area */
.avatar-section {
  display: flex;
  flex-direction: column; /* Align items vertically */
  align-items: center;  /* Center horizontally */
  margin-bottom: 20px; /* Add some space below */
}

.avatar-section .MuiAvatar-root { /* Target the MUI Avatar component */
  width: 120px !important; /* Set a fixed width */
  height: 120px !important; /* Set a fixed height */
  margin-bottom: 10px; /* Add space below the avatar */
}

.avatar-section input[type="file"] {
  display: none; /* Hide the actual file input */
}

.avatar-section label {
  cursor: pointer; /* Make the label clickable */
  color: #007bff; /* Blue color for the link */
  text-decoration: underline; /* Add underline */
}

.avatar-section label:hover {
  color: #0056b3; /* Darker blue on hover */
}

/* Style for the profile picture upload area */
.avatar-section {
  display: flex;
  flex-direction: column; /* Align items vertically */
  align-items: center;  /* Center horizontally */
  margin-bottom: 20px; /* Add some space below */
}

.avatar-section .MuiAvatar-root { /* Target the MUI Avatar component */
  width: 120px !important; /* Set a fixed width */
  height: 120px !important; /* Set a fixed height */
  margin-bottom: 10px; /* Add space below the avatar */
}

.avatar-section input[type="file"] {
  display: none; /* Hide the actual file input */
}

.avatar-section label {
  cursor: pointer; /* Make the label clickable */
  color: #007bff; /* Blue color for the link */
  text-decoration: underline; /* Add underline */
}

.avatar-section label:hover {
  color: #0056b3; /* Darker blue on hover */
}

.toggle-group {
  margin-top: 10px;
  display: flex;
  justify-content: flex-start;
}

.switch-container {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.switch-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.button-container {
  display: flex;
  justify-content: flex-end; /* Align buttons to the right */
  gap: 10px;
  margin-top: 20px;
}

/* Header styling */
.header {
	text-align: center;
	margin-bottom: 20px;
	font-weight: 600;
	color: #333;
}

/* Ensure buttons have spacing */
button {
	text-transform: none !important;
	margin-top: 10px;
}

/* Dashboard content */
.dashboard-content {
  padding: 20px;
}
.summary {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.card {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  flex: 1 1;
  text-align: center;
  font-size: 16px;
}
.card span {
  display: block;
  font-size: 24px;
  font-weight: bold;
  margin-top: 10px;
}
.table-section {
  margin-bottom: 20px;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}
table th, table td {
  padding: 10px;
  text-align: left;
  border: 1px solid #ddd;
}
table th {
  background-color: #34495e;
  color: white;
}
.summary-section {
  margin-top: 20px;
}
.csat-cards {
  display: flex;
  gap: 20px;
}
.csat-card {
  background: white;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: center;
  flex: 1 1;
}
.csat-card span {
  display: block;
  font-size: 24px;
  font-weight: bold;
  margin-top: 10px;
}
/* Basic CSS for the login and registration forms */
.login-page, .register-page {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 1000; /* Ensure it's above other content */
}

.login-page.active, .register-page.active {
  display: flex; /* Only display when active */
}
.form-container {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  width: 100%;
  text-align: center;
  max-width: 400px; /* Set a max-width to fit within the popup */
  box-sizing: border-box;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); /* Shadow to make it stand out */
}
.form-container input, .form-container select {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
  box-sizing: border-box; /* Ensure padding doesn't exceed width */
}
/* Social Login Section */
.social-login {
  margin-top: 20px;
}

.social-buttons {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30%;
  padding: 10px;
  border-radius: 5px;
  border: none;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.social-btn:hover {
  transform: scale(1.05);
}

.google-btn {
  background-color: #db4437;
  color: white;
}

.linkedin-btn {
  background-color: #0077b5;
  color: white;
}

.facebook-btn {
  background-color: #3b5998;
  color: white;
}

.social-btn svg {
  margin-right: 8px;
}
.form-container button {
  width: 100%;
  padding: 10px;
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.form-container button:hover {
  background-color: #45a049;
}

/* Styling the header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background-color: #333;
  color: white;
}
.header .login-cta {
  background-color: #007BFF;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  color: white;
}
.header .login-cta:hover {
  background-color: #0056b3;
}
.link{
  color: #007BFF;
  cursor: pointer;
  text-decoration: underline;
}
.register-link, .login-link {
  text-align: center;
  margin-top: 10px;
}
.register-link p, .login-link p {
  font-size: 14px;
}
.link:hover {
  color: #0056b3;
}
/* Styling for the register link */
.register-link {
  text-align: center;
  margin-top: 10px;
}
.register-link a {
  color: #007BFF;
  text-decoration: none;
}
.register-link a:hover {
  text-decoration: underline;
}

.register-link .link {
  margin-left: 5px;
}

.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
}

.toast {
  background-color: #4CAF50;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  margin-bottom: 10px;
  opacity: 0;
  animation: fadeInOut 3s ease-in-out forwards;
}

.toast.error {
  background-color: #f44336;
}

@keyframes fadeInOut {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}


/* stylelint-disable */
html,
body {
  width: 100%;
  height: 100%;
}
input::-ms-clear,
input::-ms-reveal {
  display: none;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
  margin: 0;
}
[tabindex='-1']:focus {
  outline: none;
}
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.5em;
  font-weight: 500;
}
p {
  margin-top: 0;
  margin-bottom: 1em;
}
abbr[title],
abbr[data-original-title] {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  border-bottom: 0;
  cursor: help;
}
address {
  margin-bottom: 1em;
  font-style: normal;
  line-height: inherit;
}
input[type='text'],
input[type='password'],
input[type='number'],
textarea {
  -webkit-appearance: none;
}
ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1em;
}
ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}
dt {
  font-weight: 500;
}
dd {
  margin-bottom: 0.5em;
  margin-left: 0;
}
blockquote {
  margin: 0 0 1em;
}
dfn {
  font-style: italic;
}
b,
strong {
  font-weight: bolder;
}
small {
  font-size: 80%;
}
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
pre,
code,
kbd,
samp {
  font-size: 1em;
  font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, Courier, monospace;
}
pre {
  margin-top: 0;
  margin-bottom: 1em;
  overflow: auto;
}
figure {
  margin: 0 0 1em;
}
img {
  vertical-align: middle;
  border-style: none;
}
a,
area,
button,
[role='button'],
input:not([type='range']),
label,
select,
summary,
textarea {
  touch-action: manipulation;
}
table {
  border-collapse: collapse;
}
caption {
  padding-top: 0.75em;
  padding-bottom: 0.3em;
  text-align: left;
  caption-side: bottom;
}
input,
button,
select,
optgroup,
textarea {
  margin: 0;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
}
button,
input {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
html [type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button;
}
button::-moz-focus-inner,
[type='button']::-moz-focus-inner,
[type='reset']::-moz-focus-inner,
[type='submit']::-moz-focus-inner {
  padding: 0;
  border-style: none;
}
input[type='radio'],
input[type='checkbox'] {
  box-sizing: border-box;
  padding: 0;
}
input[type='date'],
input[type='time'],
input[type='datetime-local'],
input[type='month'] {
  -webkit-appearance: listbox;
}
textarea {
  overflow: auto;
  resize: vertical;
}
fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}
legend {
  display: block;
  width: 100%;
  max-width: 100%;
  margin-bottom: 0.5em;
  padding: 0;
  color: inherit;
  font-size: 1.5em;
  line-height: inherit;
  white-space: normal;
}
progress {
  vertical-align: baseline;
}
[type='number']::-webkit-inner-spin-button,
[type='number']::-webkit-outer-spin-button {
  height: auto;
}
[type='search'] {
  outline-offset: -2px;
  -webkit-appearance: none;
}
[type='search']::-webkit-search-cancel-button,
[type='search']::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}
output {
  display: inline-block;
}
summary {
  display: list-item;
}
template {
  display: none;
}
[hidden] {
  display: none !important;
}
mark {
  padding: 0.2em;
  background-color: #feffe6;
}


/*# sourceMappingURL=main.bc63e2e5.css.map*/