
/* Add your styles here */
.chat-container[data-v-08fed549] {
  display: flex;
  flex-direction: column;
  height: 100vh;
}
.message-list[data-v-08fed549] {
  flex: 1;
  overflow-y: auto;
}
.message-input[data-v-08fed549] {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}
textarea[data-v-08fed549] {
  flex: 1;
  margin-right: 10px;
}


/* Your component's styles here */


/* Add your component-specific styles here if needed */


.loader-container[data-v-33ee3dce] {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.8);
    width: 100%;
    /* Semi-transparent background */
}
.loader[data-v-33ee3dce] {
    border: 8px solid #f3f3f3;
    /* Light grey background */
    border-top: 8px solid #3498db;
    /* Blue spinner */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin-33ee3dce 1s linear infinite;
}
@keyframes spin-33ee3dce {
0% {
      transform: rotate(0deg);
}
100% {
      transform: rotate(360deg);
}
}

  /* Optional vibrate effect for logo */
.logo[data-v-33ee3dce] {
    width: 100px;
    /* Adjust the size as needed */
    animation: vibrate-33ee3dce 0.5s infinite;
}
@keyframes vibrate-33ee3dce {
0% {
      transform: translateX(0);
}
25% {
      transform: translateX(-5px);
}
50% {
      transform: translateX(0);
}
75% {
      transform: translateX(5px);
}
100% {
      transform: translateX(0);
}
}


.pagination-controls[data-v-33097455] {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1em;
}
button[data-v-33097455] {
  margin: 0 1em;
  padding: 0.5em 1em;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
button[data-v-33097455]:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}
span[data-v-33097455] {
  font-weight: bold;
}


.unread[data-v-3b6ff0d1] {
  font-weight: bold;
}



.sidenav {
    width: 220px;
    background-color: #333;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    overflow-y: auto;
    transition: width 0.3s ease;
}
.sidenav-toggle {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #2980b9;
    border: none;
    color: white;
    padding: 10px;
    cursor: pointer;
}
.main-sidenav ul {
    list-style-type: none;
    padding: 0;
}
.main-sidenav li {
    padding: 10px;
    cursor: pointer;
}
.main-sidenav li a {
    color: white;
    text-decoration: none;
    display: block;
}
.sub-sidenav {
    padding-left: 15px;
    background-color: #333;
}
.sub-sidenav ul {
    list-style-type: none;
    padding: 0;
}
.sub-sidenav li a {
    color: #ecf0f1;
    text-decoration: none;
}



.app[data-v-6534d801] {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: rgb(82, 82, 80);
}
.container[data-v-6534d801] {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  margin-top: 0;
  /* padding-top: 5px; */
  height: 100vh;
  overflow: scroll;
  /* border: 11px solid #d81818; */
  /* padding: 10px; */
}
.sidenav[data-v-6534d801] {
  flex: 1 0 0 auto;
  height: 100vh;
  overflow: scroll;
  padding: 20px;
  margin: 0;
}
.main[data-v-6534d801] {
  width: 100%;
  flex: 1 1 0;
  /* padding: 20px; */
  margin: 0;
  overflow: scroll;
  /* border: 11px solid #d81818; */
  background: radial-gradient(
    circle,
    rgba(248, 248, 248, 1) 0%,
    rgba(233, 189, 58, 1) 84%,
    rgba(247, 247, 247, 1) 100%
  );
}
header[data-v-6534d801] {
  /* Add your styles for the header */
  width: 100%;
  height: 50px;
  margin-top: 0;
  margin-bottom: 0;
  display: flex;
  justify-content: space-between;
}
footer[data-v-6534d801] {
  /* Add your styles for the footer */
  width: 100%;
  height: 50px;
  /* } */

  /* Add your responsive styles here */
@media (max-width: 768px) {
.container[data-v-6534d801] {
      flex-direction: column;
}
.sidenav[data-v-6534d801] {
      display: none;
      border: var(--PrimaryColor) 1px solid;
}
}
}


#app {
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  color: #2c3e50;
}
nav {
  padding: 30px;
}
nav a {
  font-weight: bold;
  color: #2c3e50;
}
nav a.router-link-exact-active {
  color: #42b983;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
  overflow: scroll;
}
/* Variables */

:root {
  --vista-blue: #7aa4d9ff;
  --celadon: #7ecb9cff;
  --baby-powder: #f9faf7ff;
  --antiflash-white: #eff4f5ff;
  --celadon-2: #89c9a3ff;


  --background-light: --baby-powder;
  --background-color: var(--antiflash-white);
  --background-dark: var(--celadon);

  --hover-color: var(--celadon-2);

  /* Primary color */

  --primary-color: var(--vista-blue);
  --primary-light: var(--celadon);
  --primary-dark: #007bff;
  --primary-darker: #0062cc;

  --text-color-light: #fff;
  --text-color-dark: #222;

  --border-radius-s: 0.25rem;
  --border-radius-m: 0.5rem;
  --border-radius-l: 1rem;

  --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;

  --box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);

  /* Accent color */
  --accent-color: #ff5722;
  --accent-light: #ff9a9a;
  --accent-dark: #ff5722;
  --accent-darker: #ff5722;

  /* Margins */
  --margin-xs: 4px;
  --margin-s: 8px;
  --margin-m: 16px;
  --margin-l: 24px;
  --margin-xl: 32px;

  /* Paddings */
  --padding-xs: 4px;
  --padding-s: 8px;
  --padding-m: 16px;
  --padding-l: 24px;
  --padding-xl: 32px;

  /* Font sizes */
  --font-size-xs: 12px;
  --font-size-s: 14px;
  --font-size-m: 16px;
  --font-size-l: 18px;
  --font-size-xl: 20px;

  /* Font weights */
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-bold: 700;

  /* table */
  --table-width: 100%;
  --table-cell-padding: 8px;
  --table-cell-padding-xs: 4px;
  --table-cell-padding-s: 8px;
  --table-cell-padding-m: 16px;
  --table-cell-padding-l: 24px;
  --table-cell-padding-xl: 32px;
  --border-color: grey;
  --button-add-color: #007bff;
  --button-update-color: #28a745;
  --button-delete-color: #dc3545;
  --button-back-color: var(--primary-color);
  --button-back-text-color: white;
  --button-color: #007bff;
  --button-text-color: white;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  background-color: var(--background-color);
  color: var(--text-color-dark);
  font-size: var(--font-size-s);
  font-weight: var(--font-weight-regular);
  line-height: 1.5;
}
/* nav */

main {
  /* margin-left: var(--sidnav-width); */
  padding: 0px;
  margin: var(--margin-xl);
  border-radius: 5px;
  /* margin-right: 100px; */
  /* margin-left: 100px; */
  /* margin-top: 100px; */
  /* padding-top: 70px; */
}

h1 {
  text-align: center;
}

h2 {
  text-align: center;
}

/* button */
button {
  margin: 20px 0 10px 0;
  background-color: #151717;
  border: none;
  color: white;
  font-size: 15px;
  font-weight: 500;
  border-radius: 10px;
  height: 50px;
  cursor: pointer;
}

button:hover {
  background-color: #ff7a59;
}

button:active {
  background-color: #ff7a59;
}

button:focus {
  outline: none;
}

button:disabled {
  cursor: not-allowed;
}

button:disabled:hover {
  background-color: #151717;
}

button:disabled:active {
  background-color: #151717;
}

button:disabled:focus {
  outline: none;
}

button:disabled:active:focus {
  outline: none;
}

button:disabled:hover:focus {
  outline: none;
}

button:disabled:active:hover:focus {
  outline: none;
}

button:disabled:active:hover {
  background-color: #151717;
}

button:disabled:hover:active:focus {
  background-color: #151717;
}

button:disabled:hover:active {
  background-color: #151717;
}

/* form */
form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    /* max-width: 500px; */
    margin: auto;
}

form label {
    font-weight: 500;
    margin-bottom: 5px;
    color: #333;
}

form input[type="text"],
form input[type="date"],
form textarea,
form select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.2s;
    background-color: #fff;
}

form input[type="text"]:focus,
form input[type="date"]:focus,
form textarea:focus,
form select:focus {
    border-color: #4caf50;
    outline: none;
}

form textarea {
    resize: vertical;
    min-height: 120px;
}

form input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
}

form button[type="submit"] {
    background-color: #4caf50;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

form button[type="submit"]:hover {
    background-color: #45a049;
}

form button[type="submit"]:active {
    background-color: #3d8d43;
}

form select {
    cursor: pointer;
}

form input[type="checkbox"] + label {
    display: inline-block;
}

form input[type="checkbox"]:focus + label {
    outline: 2px solid #4caf50;
}

@media (max-width: 600px) {
    form {
        padding: 15px;
    }

    form input[type="text"],
    form input[type="date"],
    form textarea,
    form select {
        font-size: 0.9rem;
    }

    form button[type="submit"] {
        font-size: 0.9rem;
        padding: 8px 12px;
    }
}

/*  */

/* Add your styles for text, password, and email inputs */
input[type="text"],
input[type="password"],
input[type="email"],
input[type="date"],
select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 4px;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.3s;
  width: 100%;
  margin-bottom: 10px;
}

/* Add styles on focus to enhance interactivity */
input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="date"]:focus,
select:focus {
  border-color: #007bff;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

/* Style placeholder text for better visibility */
input[type="text"]::-moz-placeholder, input[type="password"]::-moz-placeholder, input[type="email"]::-moz-placeholder, input[type="date"]::-moz-placeholder, select::-moz-placeholder {
  color: #999;
}
input[type="text"]::placeholder,
input[type="password"]::placeholder,
input[type="email"]::placeholder,
input[type="date"]::placeholder,
select::placeholder {
  color: #999;
}

/* Style select dropdown arrow */
select {
  background: transparent;
  background-image: url("data:image/svg+xml;utf8,<svg fill=\"%23007BFF\" height=\"24\" viewBox=\"0 0 24 24\" width=\"24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M7 10l5 5 5-5z\"/><path d=\"M0 0h24v24H0z\" fill=\"none\"/></svg>");
  background-position: right 10px center;
  background-repeat: no-repeat;
  padding-right: 30px; /* Adjust the padding based on the icon size */
}

/* Style radio and checkbox inputs */
input[type="radio"],
input[type="checkbox"] {
  margin-right: 5px;
}

input[type="checkbox"]:checked + label {
  font-weight: bold;
  color: green; /* Change color or add other styles as needed */
}

/* css for radio and checkbox */

/* Style for radio inputs */
input[type="radio"] {
  /* Hide the default radio button */
  display: none;
}

/* Style for labels */
input[type="radio"] + label {
  /* Add styles for label appearance */
  cursor: pointer; /* Show pointer cursor on hover */
  display: inline-block; /* Display labels inline */
  margin-right: 10px; /* Add some space between labels */
  padding: 5px 10px; /* Add padding for better clickability */
  border: 1px solid #ccc; /* Add border */
  border-radius: 5px; /* Add border radius */
}

/* Style for checked labels */
input[type="radio"]:checked + label {
  /* Style the label when the associated radio button is checked */
  background-color: #007bff; /* Change background color */
  color: #fff; /* Change text color */
}
/* select*/
select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 10px 20px;
  border-radius: 12px;
}

/* Style the radio and checkbox labels for better alignment */
label {
  display: flex;
  align-items: center;
}

/* Add a pseudo-element to create a border-bottom effect for all inputs */
input,
select {
  position: relative;
}

input::after,
select::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #007bff;
  transform-origin: center;
  transform: scaleX(0);
  transition: transform 0.3s;
}

/* Add the border-bottom effect on focus */
input:hover::after,
input:focus-within::after,
select:hover::after,
select:focus-within::after {
  transform: scaleX(1);
}

select {
  width: calc(100% - 60px);
  padding: 10px 20px;
  border-radius: 12px;
  border: 1.5px solid lightgrey;
  outline: none;
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  box-shadow: 0px 0px 20px -18px;
}

textarea {
  border-radius: 12px;
  outline: none;
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  box-shadow: 0px 0px 20px -18px;
  resize: vertical;
  height: 700px;

}

textarea:focus {
  background-color: #fff;
  box-shadow: 0 0 0 2px #cbd5e0;
}

textarea:valid {
  border: 1px solid green;
}

textarea:invalid {
  border: 1px solid rgba(14, 14, 14, 0.205);
}

label {
  font-size: 1.2rem;
  color: #4a5568;
  margin-bottom: 10px;
  font-weight: bold;
  text-align: left;
}

button {
  color: #090909;
  padding: 0.7em 1.7em;
  font-size: 18px;
  border-radius: 0.5em;
  background: #e8e8e8;
  cursor: pointer;
  border: 1px solid #e8e8e8;
  transition: all 0.3s;
  box-shadow:
    6px 6px 12px #c5c5c5,
    -6px -6px 12px #ffffff;
}

button:active {
  color: #666;
  box-shadow:
    inset 4px 4px 12px #c5c5c5,
    inset -4px -4px 12px #ffffff;
}

/* checkboxes  */

input[type="checkbox"] {
  --clr: #0b6e4f;
  position: relative;
  top: 0;
  left: 0;
  height: 1.3em;
  width: 1.3em;
  background-color: #ccc;
  border-radius: 50%;
  transition: 300ms;
}

/* radio buttons */

input[type="radio"] {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

/* Navigation bar */

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #333;
  padding: 10px 20px;
  width: 100%;
}

.logo img {
  height: 60px;
}

.navigation {
  display: flex;
  align-items: center;
}

.nav-link {
  color: white;
  margin: 0 15px;
  text-decoration: none;
  font-size: 16px;
}

.logout {
  color: white;
  background-color: #d9534f;
  padding: 10px 15px;
  border-radius: 5px;
  text-transform: uppercase;
}

.logout:hover {
  background-color: #c9302c;
}

.faq {
  position: relative;
  color: white;
  font-size: 18px;
}

.badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background-color: red;
  color: white;
  border-radius: 50%;
  padding: 5px 10px;
  font-size: 12px;
}

.mobile-menu {
  display: none;
}

.modal {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  position: relative;
}

.close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  cursor: pointer;
}

#chatbox {
  margin-top: 20px;
}

#chatlogs {
  height: 200px;
  overflow-y: scroll;
  background-color: #f1f1f1;
  padding: 10px;
}

#chat-input {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

#send-button {
  background-color: #5cb85c;
  color: white;
  padding: 10px 15px;
  margin-top: 10px;
  border: none;
  cursor: pointer;
}

#send-button:hover {
  background-color: #4cae4c;
}

@media (max-width: 768px) {
  .mobile-menu {
    display: block;
  }
}

/* Add this CSS to your styles */
table {
  width: 100%;
  border-collapse: collapse;
  background-color: #f8f9fa;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  border: 1px solid #ccc;
  overflow-x: auto;
  position: relative; /* Ensure table positioning context for dropdown */
}

/* Dropdown within table cells */
table .dropdown {
  position: relative; /* Fixed position */
  display: inline-block;
  vertical-align: middle;
  padding: auto;
 
}

table .dropdown-menu {
  display: none; /* Hidden by default */
  position: absolute;
  top: 100%; /* Position dropdown below the dropdown toggle */
  left: 0;
  z-index: 1000; /* Higher z-index to make sure it's above other table elements */
  min-width: 160px;
  padding: 8px 0;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid #ccc;
  border-radius: 4px;
}

th {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

tr {
  border-bottom: 1px solid #ddd;
  text-align: center;
  line-height: 1.2;
  height: 40px;
}



/* Show the dropdown menu on hover or click */
table .dropdown:hover .dropdown-menu,
table .dropdown:focus-within .dropdown-menu {
  display: block;
  z-index: 1000; /* Ensure it's on top */
}

/* Responsive adjustments */
@media screen and (max-width: 600px) {
  table, th, td {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }

  th {
    background-color: #343a40;
    color: #fff;
    text-align: center;
  }

  td {
    text-align: right;
    padding-left: 50%;
    position: relative;
  }

  td::before {
    content: attr(data-label);
    position: absolute;
    left: 0;
    width: 45%;
    padding-left: 10px;
    font-weight: bold;
    text-align: left;
    color: #666;
  }

  tr {
    margin-bottom: 1rem;
    display: block;
  }
}

/* Dropdown Menu */

.dropdown {
  position: relative;
  display: inline-block;
  margin: 0;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  z-index: 999999;
  background-color: white;
  padding: 10px;
  color: var(--background-dark);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  min-width: 160px;
  border-radius: 4px;
}

/* Show the main dropdown menu on hover */
.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-toggle {
  background-color: var(--vista-blue); /* Use your preferred color or a CSS variable */
  border: none;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.dropdown-toggle:hover {
  background-color: var(--tall-poppy); /* Hover state color */
}

/* Style for each dropdown item */
.dropdown-menu .dropdown-item {
  padding: 8px 16px;
  font-size: 14px;
  text-align: left;
  text-decoration: none;
  display: block;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.dropdown-menu .dropdown-item:hover {
  background-color: var(--accent-light); /* Hover state color for items */
  color: #fff;
}

/* Nested submenu */
.dropdown-menu .dropdown-submenu {
  position: relative;
}

.dropdown-menu .dropdown-submenu .dropdown-menu {
  position: absolute;
  top: 0;
  left: 100%;
  margin-top: 0;
  display: none;
  z-index: 999999;
  min-width: 160px;
  background-color: #fff;
  padding: 8px 0;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Show the nested submenu when hovering over the parent item */
.dropdown-menu .dropdown-submenu:hover .dropdown-menu {
  display: block;
}

.dropdown-menu .dropdown-item i {
  margin-right: 8px;
  font-size: 16px;
  vertical-align: middle;
}

/* Ensure submenus have the same look and feel */
.dropdown-menu .dropdown-submenu .dropdown-item {
  background-color: #fff;
  padding: 8px 16px;
}

.dropdown-menu .dropdown-submenu .dropdown-item:hover {
  background-color: var(--accent-light);
  color: #fff;
}


/* Side Navigation */

.col-1 {
  list-style: none;
  /* padding: 20px; */
  margin: 0;
  overflow: scroll;
  /* gap: var(--margin-m); */
  /* height: 80vh; */
  /* margin-top: 100px; */
  /* margin-left: 100px; */
  border-radius: var(--border-radius-m);
  background-color: var(--background-color);
  box-shadow: var(--box-shadow);
  text-align: left;
  line-height: normal;
  min-width: 200px;
  transition: all 0.3s ease-in-out;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.main-sidenav {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  list-style: none;
  padding: 0;
  margin: 0;
  overflow: scroll;
  gap: var(--margin-xl);
  height: 100vh;
  /* margin-top: var(--margin-xl); */

  text-align: left;
}

.main-sidenav a {
  text-decoration: none;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: var(--margin-s);
}
.sub-sidenav {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  list-style: none;
  margin-top: 5px;
  margin-left: 20px;
  transition: all 0.3s ease-in-out;
}

.sub-sidenav ul {
  list-style: none;
  padding: 5px;
  justify-content: flex-start;
  align-items: flex-start;
}

.sub-sidenav li {
  margin-bottom: 10px;
  margin-left: 10px;
  margin-right: 10px;
  margin-top: 10px;
  padding: 5px;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
}

.sub-sidenav a {
  text-decoration: none;
  font-size: var(--font-size-m);
  font-weight: bold;
  text-align: left;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: var(--margin-s);
  padding: 5px;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}


/* Hidden class for additional control */
.hidden {
  display: none;
} */

/* Body Header Header */

.header-bar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  /* padding: var(--margin-xl); */
  margin: 0;
  gap: var(--margin-xl);
  height: 50px;
  /* margin-top: var(--margin-xl); */
  background-color: var(--baby-powder);
  border-radius: var(--margin-s);
  /* margin-right: 100px; */
  margin-top: 10px;
  width: 100%;
}

.body-area {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  list-style: none;
  padding: var(--margin-m);
  margin: 0;
  height: 80vh;
  overflow: scroll;
  /* gap: var(--margin-xl); */
  /* height: 70vh; */
  /* margin-top: var(--margin-xl); */
  background-color: var(--baby-powder);
  border-radius: var(--margin-s);
  /* margin-right: 100px; */
  width: 100%;
}

.stats-area {
  display: flex;
  width: 100%;
  padding: var(--margin-s);
  border-bottom: 1px dotted var(--text-color-dark);
}

.title-area {
  flex: 3;
  justify-content: flex-start;
  align-items: flex-start;
}

.title-area h1 {
  margin: 0;
  padding: 0;
  font-size: var(--font-size-xl);
  font-weight: bolder;
  color: var(--text-color-dark);
  text-shadow: #000;
  text-transform: capitalize;
  text-align: left;
}
.metric {
  flex: 1;
  border-right: 1px solid var(--text-color-dark);
}

.metric p {
  margin: 0;
  padding: 0;
  font-size: var(--font-size-xl);
  font-weight: bolder;
}

.list-area {
  display: flex;
  flex-direction: column;
}

.list-area table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed; /* Fixed table layout to handle long words or strings */
}

.list-area th {
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid var(--text-color-dark);

  padding: 5px;
  text-align: left;
}

.list-area table,
td {
  padding: 5px;
  text-align: left;
  word-wrap: break-word; /* Break words on overflow */
}

.list-area td {
  background-color: var(--background-color);
  color: var(--text-color-dark);
  text-shadow: #000;
}

#search {
  width: 300px;
  height: 30px;
  border-radius: 5px;
  border: none;
  padding: 5px;
  margin-right: var(--margin-m);
  background-color: var(--antiflash-white);
  background-image: url(/img/search.f19fe6eb.png);
  background-repeat: no-repeat;
  background-position: right;
  background-size: 30px 30px;
}

#date {
  width: 200px;
  height: 30px;
  border-radius: 5px;
  border: none;
  padding: 5px;
  margin-right: var(--margin-m);
}

#new {
  /* button */
  background-color: var(--primary-color);
  color: var(--background-color);
  border: none;
  border-radius: 5px;
  padding: 5px;
  margin-right: var(--margin-m);
  cursor: pointer;
  padding: 5px 10px;
}

#new i {
  /* plus icon */
  font-size: 1.2em;
}

/* login CSS  */

/* signup process  */

.login-area {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: var(--margin-xl);
}

.form-container {
  width: 420px;
  border-radius: 0.75rem;
  background-color: var(--background-color);
  padding: 2rem;
  margin: var(--margin-50) auto;
}
.form-container form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: var(--background-color);
  padding: 30px;
  max-width: 500px;
  border-radius: 20px;
  margin: 0 auto;
  margin-bottom: 20px;
  /* margin-right: 20px; */
  margin-top: var(--margin-xl);
  font-size: 1rem;
  color: #4a5568;
  outline: none;
  border: 1px solid transparent;
  border-radius: 4px;
  transition: all 0.2s ease-in-out;
  height: auto;
  overflow: scroll;
}

.title {
  text-align: center;
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 700;
}

.form {
  margin-top: 1.5rem;
}

.input-group {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.input-group label {
  display: block;
  margin-bottom: 4px;
}

.input-group input {
  width: 100%;
  border-radius: 0.375rem;
  border: 1px solid rgba(55, 65, 81, 1);
  outline: 0;
  padding: 0.75rem 1rem;
}

.input-group input:focus {
  border-color: rgba(167, 139, 250);
}

.forgot {
  display: flex;
  justify-content: flex-end;
  font-size: 0.75rem;
  line-height: 1rem;
  color: rgba(156, 163, 175, 1);
  margin: 8px 0 14px 0;
}

.forgot a,
.signup a {
  color: rgba(243, 244, 246, 1);
  text-decoration: none;
  font-size: 14px;
}

.forgot a:hover,
.signup a:hover {
  -webkit-text-decoration: underline rgba(167, 139, 250, 1);
          text-decoration: underline rgba(167, 139, 250, 1);
}

.sign {
  display: block;
  width: 100%;
  background-color: var(--button-back-color);
  font-size: 0.875rem;
  line-height: 1.25rem;
  padding: 0.75rem;
  text-align: center;
  color: rgba(17, 24, 39, 1);
  border: none;
  border-radius: 0.375rem;
  font-weight: 600;
}

.social-message {
  display: flex;
  align-items: center;
  padding-top: 1rem;
}

.line {
  height: 1px;
  flex: 1 1 0%;
  background-color: rgba(55, 65, 81, 1);
}

.social-message .message {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.social-icons {
  display: flex;
  justify-content: center;
}

.social-icons .icon {
  border-radius: 0.125rem;
  padding: 0.75rem;
  border: none;
  background-color: transparent;
  margin-left: 8px;
}

.social-icons .icon svg {
  height: 1.25rem;
  width: 1.25rem;
  fill: #fff;
}

.signup {
  text-align: center;
  font-size: 0.75rem;
  line-height: 1rem;
}

.signup a {
  color: black;
}

.signup a:hover {
  -webkit-text-decoration: underline rgba(167, 139, 250, 1);
          text-decoration: underline rgba(167, 139, 250, 1);
}

@media (max-width: 768px) {
  .form-container {
    margin: 0;
    width: 100%;
    height: 100vh;
  }
}

/* Modal CSS  */
/* Modal Css  */

.custom-modal {
  display: flex;
  align-items: center;
  justify-content: flex-end; /* changed from center to flex-end */
  position: fixed;
  z-index: 9999;
  right: 20px; /* added right offset */
  top: 0;
  width: calc(100% - 40px); /* adjusted width to account for right offset */
  height: 100vh;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

.custom-modal .modal-content {
  background-color: var(--background-color);
  animation: slideDown 0.4s ease-out;
  position: fixed;
  right: 20px; /* added right offset */
  top: 20;
  right: 10;
  width: calc(100% - 40px); /* adjusted width to account for right offset */
  height: 100vh;
  overflow: auto;
  padding: 10px;
  margin: 20px;

  border-radius: 10px; /* Slightly larger border radius */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Adjusted shadow */
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center; /* Center content horizontally */
  overflow-y: auto; /* Enable vertical scrolling */
  min-width: 600px;
  max-width: 600px;
  /* max-height: 80vh; */

}

/* Example of styling the scrollbar */
.custom-modal .modal-content::-webkit-scrollbar {
  width: 8px; /* Width of scrollbar */
}

.custom-modal .modal-content::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2); /* Color of scrollbar thumb */
  border-radius: 4px; /* Rounded corners for thumb */
}

.custom-modal .modal-header,
.custom-modal .modal-body,
.custom-modal .modal-footer {
  padding: 10px;
}

.custom-modal .modal-body {
  width: calc(100% - 20px);
}

.custom-modal .modal-header {
  display: flex;
  justify-content: space-between;
  align-items: space-between;
  padding: 10px;
  background-color: var(--background-color);
  border-bottom: 1px solid var(--background-color);
  margin: 0;
  width: 100%;
  align-items: center;
  border-bottom: 1px solid #ddd;
}

.custom-modal .modal-header .custom-header {
  font-weight: bold;
}

.custom-modal .modal-header .close {
  font-weight: bold;
  color: #000;
  cursor: pointer;
  transition: color 0.3s;
  font-size: 34px;
}

.custom-modal .modal-header .close:hover {
  color: #000;
}

.custom-modal .modal-body .custom-content {
  margin-top: 10px;
}

.custom-modal .modal-footer {
  display: flex;
  justify-content: flex-end;
  border-top: 1px solid #ddd;
}

/* Animation for modal appearance */
@keyframes slideDown {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Media Queries for Mobile Responsiveness */
@media (max-width: 768px) {
  .custom-modal .modal-content {
    width: 90%;
    max-width: 400px;
  }

  .custom-modal .modal-header .custom-header {
  }

  .custom-modal .modal-body .custom-content {
  }
}

@media (max-width: 480px) {
  .custom-modal .modal-content {
    width: 95%;
    max-width: 300px;
  }

  .custom-modal .modal-header .custom-header {
  }

  .custom-modal .modal-body .custom-content {
  }
}

/* Seearch Bar */

.search-container {
  position: relative;
  width: 100%;
  max-width: 400px;
  border-radius: 50px;
  background: linear-gradient(
    135deg,
    rgb(218, 232, 247) 0%,
    rgb(214, 229, 247) 100%
  );
  padding: 5px;
  display: flex;
  align-items: center;
}

.search-container::after,
.search-container::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: inherit;
  position: absolute;
}

.search-container::before {
  top: -1px;
  left: -1px;
  background: linear-gradient(
    0deg,
    rgb(218, 232, 247) 0%,
    rgb(255, 255, 255) 100%
  );
  z-index: -1;
}

.search-container::after {
  bottom: -1px;
  right: -1px;
  background: linear-gradient(
    0deg,
    rgb(163, 206, 255) 0%,
    rgb(211, 232, 255) 100%
  );
  box-shadow:
    rgba(79, 156, 232, 0.7019607843) 3px 3px 5px 0px,
    rgba(79, 156, 232, 0.7019607843) 5px 5px 20px 0px;
  z-index: -2;
}

.input {
  padding: 10px;
  width: 100%;
  background: linear-gradient(
    135deg,
    rgb(218, 232, 247) 0%,
    rgb(214, 229, 247) 100%
  );
  border: none;
  color: #9ebcd9;
  font-size: 20px;
  border-radius: 50px;
}

.input:focus {
  outline: none;
  background: linear-gradient(
    135deg,
    rgb(239, 247, 255) 0%,
    rgb(214, 229, 247) 100%
  );
}

.search__icon {
  width: 50px;
  aspect-ratio: 1;
  border-left: 2px solid white;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  border-radius: 50%;
  padding-left: 12px;
  margin-right: 10px;
}

.search__icon:hover {
  border-left: 3px solid white;
}

.search__icon path {
  fill: white;
}

/* chart  */

/* dashboard  */

.dashboard {
  display: flex;
  flex-direction: column;
}

.chat-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 300px;
  height: 400px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  /* Additional styles can be added as needed */
}

.whatsapp-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  background-color: #f5f5f5;
}

.message-form {
  margin-bottom: 20px;
}

.message-form input {
  margin-right: 10px;
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.message-form button {
  padding: 5px 10px;
  background-color: #4caf50;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.message-response {
  margin-bottom: 10px;
  font-family: Arial, sans-serif;
}

.incoming-message {
  background-color: #dcf8c6;
  margin-bottom: 10px;
  padding: 10px;
  border-radius: 5px;
}

.outgoing-message {
  background-color: #e5e5ea;
  margin-bottom: 10px;
  padding: 10px;
  border-radius: 5px;
  text-align: right;
}

.chat-contact {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 10px;
  cursor: pointer;
  margin: 5px;
  border-radius: 5px;
  box-shadow: 0 1px 2px rgba(56, 48, 48, 0.05);
}

.chat-contact p {
  margin: 0;
}

.chat-contact:hover {
  background-color: #f1f1f1;
}

.chat-contact.active {
  background-color: #e0e0e0;
}

.contact-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
}

.contact-name {
  font-weight: bold;
}

.contact-message {
  color: #888;
}

/* inhouse chat  */

.inhouse-chat {
  display: flex;
  flex-direction: column;
  height: 80vh;
}

.inhouse-chat .message-list {
  overflow-y: auto;
  flex: 1;
}

.inhouse-chat .message-list div {
  margin: 10px 0;
  padding: 10px;
  background-color: #f2f2f2;
  border-radius: 5px;
}

.inhouse-chat .message-input {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.inhouse-chat .message-input textarea {
  flex: 1;
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
  height: 50px; /* Reduce the height of the text area */
}

.inhouse-chat .message-input button {
  margin-left: 10px;
  padding: 5px 10px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

/* Add your CSS styles here to achieve the WhatsApp-like look */
.whatsapp-container {
  display: flex;
  border: 1px solid #000;
  margin: 0;
  padding: 0;
  height: 100vh;
  width: 100%;
}

.chat-container {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.chat-header {
  background-color: #075e54;
  color: #fff;
  padding: 10px;
  display: flex;
  align-items: center;
}

.contact-info {
  display: flex;
  align-items: center;
}

.contact-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
}

.contact-name {
  font-weight: bold;
  font-size: 16px;
}

.chat-body {
  flex: 1;
  display: flex;
}

.chat-column {
  flex: 1;
  overflow-y: auto;
  padding: 10px;
  border-right: 1px solid #ddd;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#chat-messages {
  padding-right: 0;
}

.message-bubble {
  padding: 10px;
  border-radius: 10px;
  max-width: 70%;
}

.message-received {
  background-color: #f0f0f0;
}

.message-sent {
  background-color: #dcf8c6;
}

.chat-input-container {
  display: flex;
  align-items: center;
  background-color: #f5f5f5;
  padding: 10px;
}

#chat-input {
  flex: 1;
  padding: 8px;
  border: none;
  border-radius: 20px;
  margin-right: 10px;
}

#send-button {
  background-color: #075e54;
  color: #fff;
  border: none;
  border-radius: 50%;
  padding: 10px;
  cursor: pointer;
}

#chat-contacts {
  flex: 1;
  overflow-y: auto;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

#chat-contacts strong:hover {
  cursor: pointer;
  color: #075e54;
  background-color: #fff;
}

/* interactions */

.interactions-list {
  display: flex;
  flex-direction: column;
}

.interactions-list ul {
  display: flex;
  flex-direction: column;
}

.interaction-item {
  display: flex;
  flex: 1;
  margin-bottom: 20px;
  padding: 10px;
  background-color: #fff;
  transition: background-color 0.3s;
}

.interaction-item p h4 {
  display: flex;
  flex-direction: column;
  margin-left: 20px;
}

.interaction-item:hover {
  background-color: #e0e0e0;
}

@media (min-width: 768px) {
  .interaction-item {
    flex-basis: 33.33%;
  }
}

/* Profile Page  */
/* General styling for the profile page */
.profile-container {
  display: flex;
  flex-direction: column;
  height: 100vh;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 20px;
}

.profile-nav {
  padding: 10px;
  height: 50px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  border-bottom: 1.5px solid #ddd;
  flex-grow: 1;
}

.profile-management {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-grow: 3;
}

.profile-nav a {
  margin-right: 10px;
  text-decoration: none;
  color: #333;
  font-size: 16px;
}

.profile-nav a:hover {
  text-decoration: underline;
}

.profile-body {
  display: flex;
  /* flex-direction: column; */
}

/* Styling for individual sections within the profile body */

.profile-user-details {
  flex: 1;
  padding: 20px;
  border-right: 1px solid #ddd; /* Add a border to separate sections */
}

.profile-image {
  width: 200px;
  height: auto;
  img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 50%;
    border: 1px solid #ddd;
  }
}

.profile-user-details .title {
  text-align: left;
}

.profile-user-details h3 p {
  text-align: left;
}

.profile-user-details .socials {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.profile-skills {
  flex: 1;
  padding: 20px;
}

.profile-interests {
  flex: 1;
  padding: 20px;
  border-left: 1px solid #ddd; /* Add a border to separate sections */
}

.profile-socials {
  flex: 1;
  padding: 20px;
}

/* Additional styling can be added based on your design preferences */

/* Interest Cards  */

.interest-cards p {
  font-size: 17px;
  font-weight: 400;
  line-height: 20px;
  color: #666;
}

.interest-cards p.small {
  font-size: 14px;
}

.go-corner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 32px;
  height: 32px;
  overflow: hidden;
  top: 0;
  right: 0;
  background-color: #00838d;
  border-radius: 0 4px 0 32px;
}

.go-arrow {
  margin-top: -4px;
  margin-right: -12px;
  color: white;
  font-family: courier, sans;
}

.card1 {
  display: block;
  position: relative;
  max-width: 262px;
  background-color: #f2f8f9;
  border-radius: 4px;
  padding: 32px 24px;
  margin: 12px;
  text-decoration: none;
  z-index: 0;
  overflow: hidden;
}

.card1:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -16px;
  right: -16px;
  background: #00838d;
  height: 32px;
  width: 32px;
  border-radius: 32px;
  transform: scale(1);
  transform-origin: 50% 50%;
  transition: transform 0.25s ease-out;
}

.card1:hover:before {
  transform: scale(21);
}

.card1:hover p {
  transition: all 0.3s ease-out;
  color: rgba(255, 255, 255, 0.8);
}

.card1:hover h3 {
  transition: all 0.3s ease-out;
  color: #fff;
}

.card2 {
  display: block;
  top: 0px;
  position: relative;
  max-width: 262px;
  background-color: #f2f8f9;
  border-radius: 4px;
  padding: 32px 24px;
  margin: 12px;
  text-decoration: none;
  z-index: 0;
  overflow: hidden;
  border: 1px solid #f2f8f9;
}

.card2:hover {
  transition: all 0.2s ease-out;
  box-shadow: 0px 4px 8px rgba(38, 38, 38, 0.2);
  top: -4px;
  border: 1px solid #ccc;
  background-color: white;
}

.card2:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -16px;
  right: -16px;
  background: #00838d;
  height: 32px;
  width: 32px;
  border-radius: 32px;
  transform: scale(2);
  transform-origin: 50% 50%;
  transition: transform 0.15s ease-out;
}

.card2:hover:before {
  transform: scale(2.15);
}

.card3 {
  display: block;
  top: 0px;
  position: relative;
  max-width: 262px;
  background-color: #f2f8f9;
  border-radius: 4px;
  padding: 32px 24px;
  margin: 12px;
  text-decoration: none;
  overflow: hidden;
  border: 1px solid #f2f8f9;
}

.card3 .go-corner {
  opacity: 0.7;
}

.card3:hover {
  border: 1px solid #00838d;
  box-shadow: 0px 0px 999px 999px rgba(255, 255, 255, 0.5);
  z-index: 500;
}

.card3:hover p {
  color: #00838d;
}

.card3:hover .go-corner {
  transition: opactiy 0.3s linear;
  opacity: 1;
}

.card4 {
  display: block;
  top: 0px;
  position: relative;
  max-width: 262px;
  background-color: #fff;
  border-radius: 4px;
  padding: 32px 24px;
  margin: 12px;
  text-decoration: none;
  overflow: hidden;
  border: 1px solid #ccc;
}

.card4 .go-corner {
  background-color: #00838d;
  height: 100%;
  width: 16px;
  padding-right: 9px;
  border-radius: 0;
  transform: skew(6deg);
  margin-right: -36px;
  align-items: start;
  background-image: linear-gradient(-45deg, #8f479a 1%, #dc2a74 100%);
}

.card4 .go-arrow {
  transform: skew(-6deg);
  margin-left: -2px;
  margin-top: 9px;
  opacity: 0;
}

.card4:hover {
  border: 1px solid #cd3d73;
}

.card4 h3 {
  margin-top: 8px;
}

.card4:hover .go-corner {
  margin-right: -12px;
}

.card4:hover .go-arrow {
  opacity: 1;
}

/* Card Page CSS  */
.card-page {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
}

.card-page:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transform: scale(1.05); /* or any other transformation you prefer */
  cursor: pointer;
}

.card-page:active {
  transform: scale(0.95);
}

/* Style for the dashboard menu */
.dashboard-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.dashboard-menu li {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dashboard-menu li a {
  display: block;
  padding: 10px;
  text-decoration: none;
  color: #333;
}

.dashboard-menu li a:hover {
  background-color: #f2f2f2;
  color: #00838d;
  outline: 1px solid #00838d;
}

/* Style for the card container */
.card-container {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Additional styling for the CardPage component */
.CardPage {
  /* Add your custom styles for the CardPage component here */
}

/* coming soon page  */

.coming-soon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80vh;
  background-color: #f2f2f2;
  flex-direction: column;
}

.contact-form {
  text-align: center;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  max-width: 300px;
}

.contact-form h3 {
  font-size: 24px;
  margin-bottom: 20px;
}

.social-media-icons {
  margin-bottom: 20px;
}

.social-media-icons a {
  margin: 0 5px;
  color: #000;
  text-decoration: none;
}

.coming-soon input[type="text"],
.coming-soon input[type="email"],
.coming-soon textarea {
  width: 100%;
  margin-bottom: 10px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.coming-soon button {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 5px;
  background-color: #007bff;
  color: #fff;
  cursor: pointer;
}

.emai-us {
  margin-top: 20px;
  font-size: 14px;
  text-align: center;
}

.emai-us a {
  color: #007bff;
  text-decoration: none;
}

/* subscription Features  */

.subscription-features ul {
  list-style-type: none;
  padding: 0;
  text-align: left;
}

.subscription-features ul li:nth-child(odd) {
  background-color: #f0f0f0; /* Add alternate colors for odd items */
  transition: background-color 0.3s; /* Add transition for background color change */
}

.subscription-features h3 {
  color: #333; /* Set the color of the heading */
  margin-bottom: 10px;
  text-align: left;
}

.subscription-features li {
  margin-bottom: 10px; /* Add some spacing between list items */
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.subscription-features input[type="checkbox"] {
  margin-left: 10px; /* Add some spacing between the checkbox and the text */
}

/* subscription plan details  */

.subscription-plan-details {
  padding: 20px;
  max-width: 400px;
  margin: 0 auto;
  align-self: flex-start;
}

.subscription-plan-details h3 {
  margin-bottom: var(--margin-l);
  text-align: left;
  font-weight: bold;
}

.subscription-plan-details p {
  text-align: left;
  margin-bottom: var(--margin-m);
}
.subscription-plan-details .description {
  color: #666;
  margin-bottom: 15px;
}

.subscription-plan-details .price {
  color: #333;
  font-weight: bold;
}

.subscription-plan-details .duration {
  color: #666;
}

.status {
  margin-bottom: 10px;
}

.timestamp {
  font-size: 0.9em;
  font-weight: bold;
}

/* subscription plan features  */

.subscription-plan-features {
  margin: 0 auto;
  padding: 20px;
  border-radius: 8px;
}

.subscription-plan-features h3 {
  color: #333;
  font-size: 1.5em;
  margin-bottom: 15px;
  text-align: left;
  border-bottom: 1px solid #ccc;
}

.subscription-plan-features a {
  display: inline-block;
  padding: 8px 16px;
  margin-bottom: 15px;
  text-decoration: none;
  background-color: #4caf50;
  color: white;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.subscription-plan-features a:hover {
  background-color: #45a049;
}

.subscription-plan-features ul {
  list-style-type: none;
  padding: 0;
}

.subscription-plan-features li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e6e6e6;
  padding: 10px 10px;
  text-align: left;
}

.subscription-plan-features li:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  transform: translateY(-5px);
}

.subscription-plan-features button:hover {
  background-color: #d32f2f;
}

/* My Subscription page  */

/* Subscription Styles */
.current-subscription {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin-bottom: 20px;
}

.current-subscription h3 {
  color: #333;
  font-size: 24px;
  margin-bottom: 10px;
}

.subscription-message {
  color: #333;
  font-size: 16px;
}

.subscription-list {
  list-style: none;
  padding: 0;
}

.subscription-list li {
  margin-bottom: 15px;
}

.subscription-list label {
  display: block;
  font-weight: bold;
}

.subscription-available {
  color: #4caf50; /* Green */
}

.subscription-not-available {
  color: #f44336; /* Red */
}

/* AddSubscription Styles */
.add-subscription-form {
  margin-top: 20px;
}

.add-subscription-form label {
  display: block;
  margin-bottom: 10px;
}

.add-subscription-form input {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.add-subscription-form button {
  background-color: #4caf50; /* Green */
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

/* Login Page Styles */
.login-page {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin-top: 20px;
}

.login-message {
  color: #333;
  font-size: 24px;
  margin-bottom: 10px;
}

.my-subscriptions {
  display: table;
  width: 100%;
  border-collapse: collapse;
}

.my-subscriptions ul {
  display: table-row;
}

.my-subscriptions li {
  display: table-cell;
  padding: 5px;
  border: 1px solid #ddd;
}

.specification-details {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 20px;
}

.specification-item {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.5;
  margin: 10px;
}

.metrics {
  display: flex;
  flex-direction: column;
}

.metric-types {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 20px;
  width: 100%;
}

/* specification select  */

.specification-select {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  font-size: 14px;
  margin-top: 5px;
}

.specification-select:focus {
  outline: none;
  border-color: #6cb2eb; /* example color */
}

/* Style the dropdown arrow */
.specification-select::after {
  content: "\25BC"; /* Unicode character for down arrow */
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  pointer-events: none;
}

.specification-details {
  list-style: none;
  padding: 0;
}

.specification-item {
  margin-bottom: 5px;
  font-size: 14px;
}

/* Selected uom ul  */

.ul-selected-list {
  /* Add your ul styles here */
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.custom-checkbox {
  /* Add your checkbox styles here */
  /* For example, changing the checkbox color */
  color: blue;
}

/* Email Pages */

.email-page {
  display: flex;
  height: 100vh;
  font-family: Arial, sans-serif;
}

.email-page .side-panel {
  width: 250px;
  background-color: #f1f3f4;
  padding: 20px;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
}

.email-page .side-panel h1 {
  font-size: 1.5em;
  margin-bottom: 20px;
}

.email-page .side-panel p {
  margin: 10px 0;
  padding: 10px;
  cursor: pointer;
  border-radius: 5px;
}

.email-page .side-panel p:hover {
  background-color: #e8e8e8;
}

.email-page .email-inbox {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
}

.email-page .email-inbox h2 {
  margin-bottom: 20px;
}

.email-page .email-inbox ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.email-page .email-inbox li {
  padding: 15px;
  border-bottom: 1px solid #ddd;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.email-page .email-inbox li.selected {
  background-color: #e8f0fe;
}

.email-page .email-header {
  display: flex;
  align-items: center;
  width: 100%;
}

.email-page .email-header p,
.email-page .email-header button {
  margin: 0 10px;
}

.email-page .email-header p.bold {
  font-weight: bold;
}

.email-page .email-header .col {
  flex: 1;
}

.email-page .email-compose,
.email-page .email-edit {
  flex: 1;
  padding: 20px;
  border-left: 1px solid #ddd;
}

.email-page .email-compose form,
.email-page .email-edit .selected-email {
  max-width: 600px;
  margin: 0 auto;
}

.email-page .email-compose form div,
.email-page .email-edit .selected-email .email-header {
  margin-bottom: 15px;
}

.email-page .email-compose form label,
.email-page .email-edit .selected-email .email-header p {
  font-weight: bold;
}

.email-page .email-compose form input,
.email-page .email-compose form textarea,
.email-page .email-edit .selected-email .email-body p {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
}

.email-page .email-compose form button,
.email-page .email-inbox .email-header button {
  background-color: #007bff;
  color: #fff;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
}

.email-page .email-compose form button:hover,
.email-page .email-inbox .email-header button:hover {
  background-color: #0056b3;
}

.email-page .no-email-selected {
  text-align: center;
  color: #999;
  padding: 20px;
}

.email-list {
  padding: 20px;
  display: flex;
}

.email-status {
  display: flex;
  align-items: center;
  margin-right: 20px;
}

/* propert details  */
.property-details {
  font-family: "Arial", sans-serif;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  margin: auto;
  color: #333;
}

.property-details h1 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #1d1d1d;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 10px;
}

.property-details-main h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #1d1d1d;
  display: flex;
  align-items: center;
}

.property-details-main h2 i {
  color: #3498db;
  margin-right: 10px;
}

.property-listing-type {
  font-weight: bold;
  color: #3498db;
}

.property-details-main p {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #555;
}

.property-details-main p strong {
  color: #333;
}

.property-details-main p i {
  color: #666;
}

.property-details .image {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.property-details .image img {
  max-width: 150px;
  border-radius: 8px;
  margin-right: 15px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.property-details .image p {
  margin: 0;
  color: #777;
}

.property-features,
.property-pricing,
.property-agent,
.property-disclosure,
.property-address,
.additional-floors {
  background-color: #f9f9f9;
  padding: 15px;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.property-features h3,
.property-pricing h3,
.property-agent h3,
.property-disclosure h3,
.property-address h3,
.additional-floors h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #1d1d1d;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 10px;
}

.property-features ul,
.property-disclosure ul,
.additional-floors ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.property-features li,
.property-disclosure li,
.additional-floors li {
  padding: 10px;
  border-bottom: 1px solid #e0e0e0;
  color: #555;
}

.property-features li:last-child,
.property-disclosure li:last-child,
.additional-floors li:last-child {
  border-bottom: none;
}

.property-address p,
.property-agent p {
  margin-bottom: 10px;
}

.property-address p strong,
.property-agent p strong {
  color: #333;
}

/* loader  */
.dots {
  width: 3em;
  height: 3em;
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
  align-items: center;
}

.dots > div {
  width: 0.5em;
  height: 0.5em;
  background-color: #3cefff;
  border-radius: 50%;
  animation: fade 1.5s alternate ease-in-out infinite;
}

.dots > div:nth-of-type(2),
.dots > div:nth-of-type(4) {
  animation-delay: 0.25s;
}

.dots > div:nth-of-type(3),
.dots > div:nth-of-type(5),
.dots > div:nth-of-type(7) {
  animation-delay: 0.5s;
}

.dots > div:nth-of-type(6),
.dots > div:nth-of-type(8) {
  animation-delay: 0.75s;
}

.dots > div:nth-of-type(9) {
  animation-delay: 1s;
}

@keyframes fade {
  to {
    opacity: 0.2;
  }
}

/* notifications  */
.notification-list {
  padding: 1rem;
  background-color: #f9f9f9;
  max-width: 800px;
  margin: 0 auto;
}

.notification-item {
  display: flex;
  align-items: center;
  padding: 0.75rem;
  margin-bottom: 0.5rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition:
    background-color 0.3s,
    box-shadow 0.3s;
}

.notification-item.read {
  background-color: #e0e0e0;
  text-decoration: line-through;
}

.notification-item:hover {
  background-color: #f0f0f0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.notification-item .notification-status {
  font-size: 0.875rem;
  color: #6c757d;
}

.notification-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.notification-actions a {
  color: #007bff;
  text-decoration: none;
  transition: color 0.3s;
}

.notification-actions a:hover {
  color: #0056b3;
}

.filters {
  margin-bottom: 1rem;
}

.filters button {
  padding: 0.5rem 1rem;
  border: 1px solid #007bff;
  border-radius: 5px;
  background-color: #ffffff;
  color: #007bff;
  cursor: pointer;
  transition:
    background-color 0.3s,
    border-color 0.3s;
}

.filters button.active {
  background-color: #007bff;
  color: #ffffff;
}

.filters button:hover:not(.active) {
  background-color: #f0f0f0;
}

input {
  padding: 0.5rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin-bottom: 1rem;
  width: 100%;
}

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.pagination button {
  padding: 0.5rem 1rem;
  border: 1px solid #007bff;
  border-radius: 5px;
  background-color: #ffffff;
  color: #007bff;
  cursor: pointer;
  transition:
    background-color 0.3s,
    border-color 0.3s;
}

.pagination button:disabled {
  background-color: #e0e0e0;
  border-color: #ccc;
  color: #999;
  cursor: not-allowed;
}

.pagination button:not(:disabled):hover {
  background-color: #007bff;
  color: #ffffff;
  border-color: #0056b3;
}

.pagination button:not(:disabled):active {
  background-color: #0056b3;
  border-color: #004080;
}

/* tooltip */

/* Tootltips  */

.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: white;
  color: var(--text-color);
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  bottom: 125%; /* Position the tooltip above the button */
  left: 50%;
  margin-left: -60px;
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

/* Uom Measurement  */

.map-uom {
  display: flex;
  flex-direction: column;
  margin: 1rem 0;
}

.map-uom label {
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: #333;
}

.map-uom select {
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;

  color: #333;
  background-color: #fff;
}

.map-uom select:focus {
  border-color: #007bff;
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

.selected-unitofmeasuretypes {
  margin: 1rem 0;
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #f9f9f9;
}

.selected-unitofmeasuretypes ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.selected-unitofmeasuretypes .ul-selected-list {
  display: flex;
  width: 100%;
}

.selected-unitofmeasuretypes li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
}

.selected-unitofmeasuretypes label {
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  align-items: center;
  font-weight: normal;
  color: #333;
  cursor: pointer;
}

.selected-unitofmeasuretypes .custom-checkbox {
  margin-left: 0.5rem;
  cursor: pointer;
}

form .form-group {
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  padding: 15px;
  margin-bottom: 20px;
  background-color: #fafafa;
}

form .form-group label {
  margin-bottom: 10px;
}

.form-group {
  margin-bottom: 1em;
}

.form-group label {
  display: block;
  margin-bottom: 0.5em;
}

.form-group input[type="checkbox"] {
  margin-right: 0.5em;
}

form .form-control {
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 10px;
  width: 100%;
  box-sizing: border-box;
}

form .map-uom,
form .selected-unitofmeasuretypes {
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  padding: 15px;
  margin-bottom: 20px;
  background-color: #fafafa;
}

form .selected-unitofmeasuretypes ul {
  list-style-type: none;
  padding: 0;
}

form .selected-unitofmeasuretypes ul li {
  margin-bottom: 10px;
}

form button[type="submit"] {
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s;
}

form button[type="submit"]:hover {
  transition: background-color 0.3s;
}

@media (max-width: 768px) {
  form {
    padding: 15px;
  }

  form input[type="text"],
  form input[type="checkbox"],
  form textarea,
  form select {
    padding: 8px;
  }

  form .form-group,
  form .map-uom,
  form .selected-unitofmeasuretypes {
    padding: 10px;
  }
}

.categories-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  justify-content: space-between;
  padding: 0;
  list-style-type: none;
  flex-basis: 33%;
}

.category-item {
  /* margin-right: 20px; */
  /* margin-bottom: 10px; */
  padding: 5px;
  display: flex;
}

.supplier-account {
  padding: 20px;
  background-color: #f9f9f9;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.supplier-account .tab-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.supplier-account h4 {
  margin-top: 0;
  color: #333;
}

.supplier-account > div > div {
  padding: 10px 0;
}

@media (max-width: 768px) {
  .supplier-account .tab-buttons {
    flex-direction: column;
    gap: 5px;
  }

  .supplier-account .tab-buttons button {
    width: 100%;
    text-align: center;
  }
}

.ul-selected-list {
  list-style-type: none;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.ul-selected-list li {
  margin-bottom: 20px;
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #f9f9f9;
}

.ul-selected-list .specification-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.ul-selected-list .specification-container h5 {
  margin: 0 0 10px;
  font-size: 18px;
  color: #333;
}

.ul-selected-list .specification-container p {
  margin: 5px 0;
  font-size: 14px;
  color: #666;
}

.ul-selected-list .specification-image {
  margin-top: 10px;
  max-width: 100px;
  border-radius: 4px;
}

/* material details  */

.material-details {
  font-family: Arial, sans-serif;
  color: #333;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.material-title {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 10px;
}

.material-id,
.material-description,
.material-uses,
.material-origin {
  margin-bottom: 10px;
}

.material-id strong,
.material-description strong,
.material-uses strong,
.material-origin strong {
  color: #3498db;
}

.header-bar {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 10px;
}

.header-bar button {
  background-color: #3498db;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
}

.header-bar button i {
  margin-right: 5px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #fff;
}
.header-bar button:hover {
  background-color: #2980b9;
}

.material-details h2,
.material-details h3,
.material-details h4 {
  color: #2c3e50;
  margin-top: 20px;
}

.specification {
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 15px;
  margin-bottom: 20px;
  background-color: #f9f9f9;
}

.spec-title {
  font-size: 1.5rem;
  color: #e67e22;
  margin-bottom: 10px;
}

.section {
  margin-bottom: 15px;
}

.section p {
  margin: 5px 0;
}

.section h4 {
  font-size: 1.2rem;
  color: #2980b9;
  margin-bottom: 10px;
}

.uom,
.image,
.uom-mapping {
  margin-bottom: 10px;
}

.uom p,
.image p,
.uom-mapping p {
  margin: 5px 0;
}

.image img {
  max-width: 150px;
  border-radius: 5px;
  margin-bottom: 10px;
}

.attributes .attribute {
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 10px;
  background-color: #fff;
  margin-bottom: 10px;
}

.attribute p {
  margin: 5px 0;
}


.materials-table {
  overflow-x: auto; /* Adds horizontal scroll if the table overflows */
}

.materials-table table {
  width: 100%; /* Ensures the table takes up full width of its container */
  table-layout: auto; /* Columns adjust their width based on content */
  border-collapse: collapse; /* Removes space between borders of adjacent cells */

}

.materials-table th, .materials-table td {
  padding: 8px; /* Adds space inside cells */
  text-align: left; /* Aligns text to the left */
  border: 1px solid #ddd; /* Adds a light gray border around cells */
}

.materials-table th {
  background-color: #f4f4f4; /* Light gray background for header cells */
}

.materials-table .actions {
  display: flex; /* Aligns action buttons in a row */
  gap: 4px; /* Adds space between action buttons */
}

.materials-table .tooltip {
  position: relative; /* Necessary for positioning tooltip text */
  display: inline-block; /* Allows the tooltip to be displayed inline with buttons */
}

.materials-table .tooltip .tooltiptext {
  visibility: hidden; /* Hides the tooltip text by default */
  width: 120px; /* Width of the tooltip */
  background-color: #555; /* Dark background color for tooltip */
  color: #fff; /* White text color for tooltip */
  text-align: center; /* Centers the text inside the tooltip */
  border-radius: 5px; /* Rounds the corners of the tooltip */
  padding: 5px 0; /* Adds padding inside the tooltip */
  position: absolute; /* Positions the tooltip text absolutely */
  z-index: 1; /* Ensures the tooltip text appears above other elements */
  bottom: 125%; /* Positions the tooltip above the button */
  left: 50%; /* Centers the tooltip horizontally */
  margin-left: -60px; /* Adjusts the tooltip to center it */
  opacity: 0; /* Hides the tooltip initially */
  transition: opacity 0.3s; /* Adds a fade-in effect for the tooltip */
}

.materials-table .tooltip:hover .tooltiptext {
  visibility: visible; /* Shows the tooltip text on hover */
  opacity: 1; /* Makes the tooltip text visible */
}


/* stats */

.stats-area {
  padding: 20px;
  background-color: #f9f9f9;
}

.title-area {
  margin-bottom: 20px;
}

.title {
  font-size: 2rem;
  color: var(--primary-color);
}

.metric {
  margin-bottom: 15px;
}

.metric p {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-color);
}

.metric span {
  font-size: 1rem;
  color: var(--text-color);
}


.progress-bar {
  width: 100%;
  background-color: #f3f3f3;
  border-radius: 5px;
  height: 20px;
  margin-top: 10px;
}

.progress {
  height: 100%;
  background-color: #4caf50;
  border-radius: 5px;
  transition: width 0.5s ease;
}


:root {
  /* Primary color */
  --primary-color: #c4e3f3;
  --primary-light: #d4edf6;
  --primary-dark: #007bff;
  --primary-darker: #0062cc;

  /* Secondary color */
  --secondary-color: #0d2b3e;

  /* Background colors */
  --background-color: #f8f4f4;
  --off-white: #f8f9fa;

  /* Margins */
  --margin-xs: 4px;
  --margin-s: 8px;
  --margin-m: 16px;
  --margin-l: 24px;
  --margin-xl: 32px;

  /* Paddings */
  --padding-xs: 4px;
  --padding-s: 8px;
  --padding-m: 16px;
  --padding-l: 24px;
  --padding-xl: 32px;

  /* Font sizes */
  --font-size-xs: 12px;
  --font-size-s: 14px;
  --font-size-m: 16px;
  --font-size-l: 18px;
  --font-size-xl: 20px;

  /* Font weights */
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-bold: 700;

  /* Button color */
  --button-color: #007bff;
  --button-color-hover: #0062cc;
  --button-color-active: #005cbf;
  --button-color-disabled: #6c757d;

  /* /sidnav */
  --sidnav-width: 200px;

  /* table */
  --table-width: 100%;
  --table-cell-padding: 8px;
  --table-cell-padding-xs: 4px;
  --table-cell-padding-s: 8px;
  --table-cell-padding-m: 16px;
  --table-cell-padding-l: 24px;
  --table-cell-padding-xl: 32px;

  --border-color: grey;
}

#app {
  font-family: Avenir, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: left;
  color: #2c3e50;
  height: 100vh; /* Set the height to 100vh */
  max-height: 100vh; /* Set the max-height to 100vh */
  overflow: hidden; /* Set the overflow to hidden */
}

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Predefined HTML elements */

/* individual elements */

/* sidebar */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--sidnav-width);
  height: 100vh;
  background-color: var(--primary-color);
  padding: var(--margin-m);
  margin: var(--margin-m);
  box-shadow: 0 1px 20px rgba(56, 48, 48, 0.05);
  border-radius: 5px;
}

/* main */
main {
  /* margin-left: var(--sidnav-width); */
  padding: var(--margin-m);
  margin: var(--margin-m);
  box-shadow: 0 1px 20px rgba(56, 48, 48, 0.05);
  border-radius: 5px;
}

input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  height: 40px;
  cursor: pointer;
}

input[type="search"] {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  height: 40px;
  cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns=%27http://www.w3.org/2000/svg%27 width=%2740%27 height=%2740%27 viewBox=%270 0 40 40%27><polygon fill=%27%23ccc%27 points=%270,20 40,0 40,40%27/></svg>");
  background-repeat: no-repeat;
  background-position: calc(100% - 10px) center;
  background-size: 10px;
  border-radius: 5px;
}

input[type="search"]:focus {
  outline: none;
}

select {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  height: 40px;
  cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns=%27http://www.w3.org/2000/svg%27 width=%2740%27 height=%2740%27 viewBox=%270 0 40 40%27><polygon fill=%27%23ccc%27 points=%270,20 40,0 40,40%27/></svg>");
  background-repeat: no-repeat;
  background-position: calc(100% - 10px) center;
  background-size: 10px;
  border-radius: 5px;
}

/* form */
form {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: var(--margin-m);
  margin: var(--margin-m);
  box-shadow: 0 1px 20px rgba(56, 48, 48, 0.05);
  border-radius: 5px;
  /* height: 80vh; */
  /* overflow: scroll; */
}

form input,
form select {
  margin-bottom: 15px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 100%;
  height: 40px;
}

form textarea {
  margin-bottom: 15px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 100%;
  height: 200px;
}

form select {
  margin-bottom: 15px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
  height: 40px;
  cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns=%27http://www.w3.org/2000/svg%27 width=%2740%27 height=%2740%27 viewBox=%270 0 40 40%27><polygon fill=%27%23ccc%27 points=%270,20 40,0 40,40%27/></svg>");
  background-repeat: no-repeat;
  background-position: calc(100% - 10px) center;
  background-size: 10px;
}

form button {
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #ff7a59;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin: 10px;
}

form button:hover {
  background-color: #ff6b47;
}

form label {
  font-weight: bold;
}

/* Media queries */

/* Responsive design */
@media only screen and (max-width: 768px) {
  /* Adjust font sizes */
  body {
    font-size: var(--font-size-s);
  }

  h1 {
    font-size: var(--font-size-l);
  }

  h2 {
    font-size: var(--font-size-m);
  }

  h3 {
    font-size: var(--font-size-s);
  }

  h4 {
    font-size: var(--font-size-xs);
  }

  h5 {
    font-size: var(--font-size-xs);
  }

  /* Adjust margins and paddings */
  * {
    margin: 0;
    padding: 0;
    width: 100%;
  }

  body {
    margin: var(--margin-m);
  }

  /* Adjust button padding */
  button {
    padding: var(--padding-xs) var(--padding-s);
  }
}

/* Hover effects */
a:hover,
button:hover {
  transition: color 0.2s ease-in-out;
}

button:hover {
  background-color: var(--button-color-hover);
}

button:active {
  background-color: var(--button-color-active);
}

/* Rows */
.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -var(--margin-s);
}

/* Columns */
.col {
  flex: 1;
}

.col-1 {
  flex-basis: 8.33%;
}

.col-2 {
  flex-basis: 16.66%;
}

.col-3 {
  flex-basis: 25%;
}

.col-4 {
  flex-basis: 33.33%;
}

.col-5 {
  flex-basis: 41.66%;
}

.col-6 {
  flex-basis: 50%;
}

.col-7 {
  flex-basis: 58.33%;
}

.col-8 {
  flex-basis: 66.66%;
}

.col-9 {
  flex-basis: 75%;
}

.col-10 {
  flex-basis: 83.33%;
}

.col-11 {
  flex-basis: 91.66%;
}

.col-12 {
  flex-basis: 100%;
}

.contacts {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: var(--margin-m);
  margin-top: var(--margin-m);
  padding: var(--padding-xl);
}
/* Footer */
footer {
  background-color: var(--background-color);
  color: var(--secondary-color);
  padding: var(--padding-m) var(--padding-l);
}

/* Footer content */
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* Social media links */
.social-media {
  flex: 1;
  flex-basis: 25%;
}

.social-media a {
  color: var(--background-color);
  font-size: var(--font-size-m);
  margin-right: var(--margin-s);
}

.social-media a:hover {
  color: var(--primary-light);
}

/* Links */
.links ul {
  flex: 0.1;
  list-style: none;
  gap: 5px;
}

.links li {
  margin-bottom: var(--margin-s);
}

.links a {
  color: var(--secondary-color);
  text-decoration: none;
  font-size: var(--font-size-m);
}

.links a:hover {
  color: var(--primary-light);
}

/* About */
.about {
  /* flex-basis: 100%; */
  flex-basis: 25%;
  margin-top: var(--margin-m);
}

.about h3 {
  font-size: var(--font-size-l);
  margin-bottom: var(--margin-s);
}

.about p {
  font-size: var(--font-size-m);
  line-height: 1.5;
}

/* Footer bottom */
.footer-bottom {
  border-top: 1px solid var(--background-color);
  margin-top: var(--margin-l);
  padding-top: var(--padding-m);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
}

/* Side Navigation */
.sidenav {
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 1;
  overflow-y: scroll;
  height: 100vh;
  max-width: 100%;
  gap: 10px;
  overflow: scroll;
}

.sidenav-toggle {
  display: none;
  background-color: transparent;
  border: none;
  cursor: pointer;
}

.sidenav-list {
  display: flex;
  flex-direction: column;
  /* gap: var(--margin-s); */
  list-style: none;
  padding: 0;
  margin: 0;
  overflow: scroll;
}

/* leads view  */

.leads-kanban {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  background-color: var(--background-color);
  padding: var(--padding-xl);
  gap: var(--margin-m);
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  overflow-y: auto;
  overflow-x: hidden;
}

.lead-status-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  overflow-x: scroll;
  padding: 1rem;
  background-color: #f2f2f2;
  border-bottom: 1px solid #ddd;
  gap: 1rem;
}

.lead-status {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1.2rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-right: 1rem;
  border: var(--border-color);
}

.lead-count {
  flex: 1;
  font-size: 1.2rem;
  font-weight: bold;
  margin-left: 0.5rem;
  color: var(--accent-color);
}

.lead-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1rem;
}

.lead-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 200px;
  background-color: #f2f2f2;
  border-radius: 5px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.lead-card:hover {
  transform: scale(1.05);
}

.lead-status {
  font-size: 1.2rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.lead-name {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.lead-company {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.lead-contact-owner {
  font-size: 1rem;
}

.lead-status-card {
  font-size: 1.2rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

/* inbox classes  */

.inbox {
  display: flex;
  margin: 0;
}

.inbox-list {
  flex: 1;
}

.inbox-message-card {
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 10px;
  margin-bottom: 10px;
  cursor: pointer;
}

.inbox-message-card-selected {
  background-color: #eaeaea;
}

.inbox-message-card-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
}

.inbox-message-card-sender {
  font-weight: bold;
}

.inbox-message-card-subject {
  font-weight: bold;
}

.inbox-message-card-labels {
  margin-top: 5px;
}

.inbox-message-card-label {
  display: inline-block;
  margin-right: 5px;
  padding: 2px 6px;
  background-color: #f2f2f2;
  border-radius: 3px;
  font-size: 0.8rem;
}

.inbox-message-card-actions {
  margin-top: 5px;
}

.inbox-message-card-action {
  display: inline-block;
  margin-right: 5px;
  padding: 2px 6px;
  background-color: #f2f2f2;
  border-radius: 3px;
  font-size: 0.8rem;
}

.inbox-message-details {
  flex: 1;
  padding-left: 10px;
}

.inbox-h2 {
  margin-top: 0;
}

.inbox-p {
  white-space: pre-wrap;
}

.total-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: var(--padding-xl);
  text-transform: capitalize;
}

.total-card p {
  margin: 0;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.total-card h2 {
  margin: 0;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--accent-color);
}

.ticket-card h3 {
  margin: 0;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  font-size: var(--font-size);
}

.chart-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--margin-m);
  /* padding: var(--padding-xl); */
  margin-bottom: var(--margin-xl);
  overflow-y: auto; /* Enable vertical scrolling */
  max-height: 100vh; /* Set the maximum height to 100vh */
}

.chart-container {
  /* flex: 2; */
  flex-basis: 48%;

  /* width: 500px; */
}

@media only screen and (max-width: 768px) {
  .chart-container {
    flex-basis: 100%;
    height: auto;
  }
}

.registration-form {
  max-width: 400px;
  margin: 0 auto;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #f7f7f7;
  margin-top: var(--margin-xl);
}

.registration-form__title {
  margin-bottom: 20px;
  text-align: center;
  font-size: 24px;
}

.registration-form__form {
  margin-bottom: 20px;
}

.registration-form__group {
  margin-bottom: 20px;
}

.registration-form__label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.registration-form__input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.registration-form__submit-button {
  width: 100%;
  padding: 10px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
}

.registration-form__submit-button:hover {
  background-color: #0056b3;
}

.registration-form__error {
  color: red;
  margin-top: 10px;
}

.top-nav {
  width: 100%;
  display: flex;
  justify-content: space-between;
  background: var(--accent-color);
}

.logout {
  cursor: pointer;
}

.tabs-page {
  display: flex;
  flex-direction: column;
  flex: 1;
  margin-top: var(--margin-xl);
  padding: var(--padding-xl);
}

.settings-list {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-content: space-between;
  list-style: none;
  padding: var(--padding-xl);
  margin: var(--margin-m);
}

.settings-list button {
  float: right;
  color: var(--primary-color);
  margin: var(--margin-s);
}

.tabs {
  display: flex;
}

.tabs > div {
  flex: 1;
}

.tabs button {
  width: 100%;
  padding: var(--padding-s) var(--padding-m);
}

.tabs ul {
  display: flex;
  list-style: none;
  margin-bottom: 1rem;
  gap: 10px;
}
.tabs li {
  flex: 1;
  margin-right: 1rem;
}

.tab-content {
  flex: 1;
}

.tab-content p {
  margin-bottom: 1rem;
}

.tab-content h2 {
  margin-bottom: 1rem;
}

.tab-content h3 {
  margin-bottom: 1rem;
}

.tab-content .col {
  margin-bottom: 1rem;
  height: 100%;
  overflow: scroll;
}

/* organization management */

/* Container */
.organization-management {
  margin: 0 auto;
  padding: 20px;
}

.new-org {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex: 1;
}

/* Headings */
.management-heading {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}

/* Forms */
.create-organization-form,
.update-organization-form {
  margin-bottom: 20px;
}

/* Form Labels */
.form-label {
  display: block;
  margin-bottom: 10px;
  font-weight: bold;
  color: #333;
}

/* Form Inputs */
.form-input {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  margin-bottom: 10px;
}

/* Form Buttons */
.form-button {
  background-color: #ff7a59;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 4px;
  cursor: pointer;
  margin-right: 10px;
}

.form-button:hover {
  background-color: #f06341;
}

/* Organization List */
.organization-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

/* Organization List Items */
.organization-item {
  margin-bottom: 10px;
}

/* List Buttons */
.list-button {
  background-color: #333;
  color: #fff;
  border: none;
  padding: 6px 12px;
  font-size: 12px;
  border-radius: 4px;
  cursor: pointer;
  margin-left: 10px;
}

.list-button:hover {
  background-color: #555;
}

/* configuration  */

.configure {
  display: flex;
  flex-direction: column;
  margin-top: var(--margin-xl);
  gap: 20px;
}

.configure button {
  background-color: var(--button-color-disabled);
  color: #fff;
  width: 100%;
}

.config-screen {
  display: flex;
  margin-top: var(--margin-xl);
  gap: 20px;
}

/* User configurations  */

.user-container {
  max-width: 500px;
  margin: 0 auto;
  padding: 40px;
}

.user-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 30px;
}

.user-form-group {
  margin-bottom: 20px;
}

.user-label {
  display: block;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 5px;
}

.user-input {
  display: block;
  width: 100%;
  padding: 10px;
  border: 1px solid #d9d9d9;
  border-radius: 3px;
  font-size: 16px;
  font-weight: 400;
}

.user-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #ff7a59;
  border: none;
  border-radius: 3px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
}

/* modal styles   */

.modal {
  display: block;
  position: fixed;
  z-index: 9999;
  right: 0; /* Align the modal to the right side */
  top: 0;
  width: 30%; /* Adjust the width as desired */
  height: 90vh;
  overflow: auto;
  background-color: #ffff;
  margin-right: 20px;
  padding: 20px;
  margin: 20px;
  border-radius: 20px;
}

.modal-content {
  margin: 10% auto;
  margin-right: 10%; /* Create space on the right side of the modal */
}

.modal-content form {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100vh;
  width: 100%;
  margin: (var(--margin-xl));
}

@media screen and (max-width: 768px) {
  .modal {
    width: 100%;
  }
}

.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.create-contact-button {
  background-color: #ff7a59;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 4px;
  cursor: pointer;
  float: right;
  margin-bottom: var(--margin-xl);
}

.search-input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  float: right;
}

/* my accounts page  */

.myaccounts-page-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #f1f1f1;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin: 0;
}

.myaccounts-page-card-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

.myaccounts-page-organization-list {
  display: flex;
  list-style-type: none;
  padding: var(--margin-s);
  margin-top: 10px;
  gap: 20px;
}

.myaccounts-page-organization-item {
  display: flex;
  background-color: #fff;
  border-radius: 4px;
  padding: 20px;
  margin-bottom: 20px;
}
.myaccounts-page-details-list span {
  margin-right: 10px;
  font-weight: bold;
}

.myaccounts-page-details-list a {
  margin-right: 10px;
  font-weight: bold;
  background-color: var(--accent-color);
  color: var(--background-color);
  padding: 5px;
}

.myaccounts-page-details-list {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  padding: 0;
  margin-top: 10px;
  gap: 20px;
}

.myaccounts-page-details-list li {
  margin-bottom: 5px;
}

/* customer details */

.contact-details {
  display: flex;
  height: 100vh;
  padding: var(--padding-m);
  font-size: medium;
}

.contact-details select {
  padding: 10px;
  border-radius: 4px;
  /* float: right; */
  margin-bottom: var(--margin-xl);
  width: 100%;
}

.contact-details h2 {
  font-size: 24px;
  font-weight: bold;
}

.contact-card {
  /* background-color: #f1f1f1; */
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 20px;
  /* margin: 20px; */
}

.contact-activity {
  display: flex;
  flex-direction: column;
  margin-left: var(--margin-xl);
}

.contact-activity h2 {
  font-size: 24px;
  font-weight: bold;
}

.contact-activity ul {
  list-style-type: none;
  padding: 0;
}

.contact-activity ul li {
  margin-bottom: 5px;
}

.contact-activity ul li p {
  margin-bottom: 5px;
}

.contact-activity ul li a {
  text-decoration: none;
  color: #000;
}

.contact-activity-content li {
  border: var(--border-color) 1px solid;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-actions {
  display: flex;
  margin-top: var(--padding-xl);
  margin-bottom: var(--padding-xl);
  justify-content: flex-end;
  margin-left: var(--margin-l);
  border-bottom: var(--accent-color) 1px solid;
  padding-bottom: var(--padding-xl);
  cursor: pointer;
  gap: 20px;
}

.contact-actions :hover {
  color: var(--accent-color);
}

.contact-activity-content {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Tasks CSS  */

.tasks {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  margin-top: var(--margin-xl);
  width: 100%;
  margin-left: var(--margin-m);
  margin-right: var(--margin-m);
}

.tasks button {
  background-color: #ff7a59;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 4px;
  cursor: pointer;
  width: -moz-max-content;
  width: max-content;
  margin-bottom: var(--margin-xl);
  margin-right: var(--margin-xl);
}

.card-deck {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.card {
  width: 300px;
  margin: 1rem;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.card:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.card-body {
  padding: 1rem;
}

.card-title {
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.card-text {
  color: #666;
  margin-bottom: 1rem;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background-color: #f7f7f7;
}

.btn {
  color: white;
  background-color: #0077c9;
  border: none;
  border-radius: 5px;
  padding: 0.5rem 1rem;
  cursor: pointer;
}

.btn:hover {
  background-color: #005ea1;
}

/* notes  */

.notes {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  margin-top: var(--margin-xl);
  width: 100%;
  margin-right: var(--margin-xl);
  gap: 20px;
}

.notes button {
  margin-top: var(--margin-xl);
  margin-bottom: var(--margin-xl);
  width: 100%;
  background-color: #ff7a59;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 4px;
  cursor: pointer;
}

.notes .card-body {
  background-color: yellow;
}

/* email page  */

.email-page {
  display: flex;
  margin-top: var(--margin-xl);
  height: 100%;
}

@media screen and (max-width: 768px) {
  .email-page {
    flex-direction: column;
    flex-direction: column-reverse;
    width: 100%;
  }
}

.email-inbox {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: var(--margin-m);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  padding: var(--padding-xl);
  margin-left: var(--margin-m);
  margin-right: var(--margin-m);
}

.email-header {
  flex: 1;
  gap: var(--margin-m);
  font-size: medium;
  border-bottom: var(--border-color);
  text-align: left;
  line-height: normal;
  border-bottom: var(--border-color);
}

.email-header p {
  text-align: left;
}

.email-header li {
  display: flex;
  flex-wrap: wrap;
  text-align: left;
  border-bottom: var(--button-color-disabled);
}

.email-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: -5px;
}

.bold {
  font-weight: bold;
}

.normal {
  font-weight: normal;
}

.email-inbox button {
  width: 100%;
  height: 100%;
  margin-left: var(--margin-s);
  background-color: var(--background-color);
  color: var(--accent-color);
  font-size: smaller;
}

.email-inbox ul {
  display: flex;
  flex-direction: column;
}

.email-inbox li {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  list-style: none;
  margin-top: var(--margin-m);
  border-bottom: var(--button-color-disabled) 1px solid;
}

.email-inbox li :hover {
  background-color: var(--primary-light);
  color: var(--secondary-color);
}

.email-compose {
  flex: 2;
  margin: var(--margin-m);
  padding: var(--padding-s);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}

@media screen and (max-width: 768px) {
  .email-compose {
    width: 100%;
  }
}

.email-edit {
  display: flex;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  margin-top: var(--margin-xl);
  margin-bottom: var(--margin-xl);
  margin-left: var(--margin-m);
}

.side-panel {
  display: flex;
  flex-direction: column;
  flex-basis: 10px;
  padding-left: var(--padding-xl);
  gap: 10px;
}

/* Ticket list styles */

.ticket-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 1rem;
  margin-top: var(--margin-xl);
  list-style-type: none;
}

.ticket-card {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 1rem;
  background-color: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}

.ticket-card:hover {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
  border: 1px solid var(--accent-color);
}

.ticket-card h2 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.ticket-card p {
  margin: 0.25rem 0;
  font-size: 1rem;
  color: #666;
}

.ticket-card p:first-of-type {
  font-weight: 600;
}

.ticket-button {
  background-color: var(--accent-color);
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 4px;
  cursor: pointer;
}

.label {
  display: block;
  margin-top: 10px;
}

.input-field {
  width: 300px;
}

.edit-pencil {
  margin-left: 5px;
  cursor: pointer;
}

.input-wrapper {
  display: flex;
  align-items: center;
}

.input-wrapper input {
  flex-grow: 1;
  margin-right: 10px;
}

/* profile classes  */

.profile-card {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  margin-top: 10px;
  margin-bottom: 10px;
}

.profile-card i {
  color: var(--accent-color);
}

.profile {
  display: flex;
  flex-direction: column;
  flex-basis: 23%;
  flex-wrap: wrap;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 1rem;
  background-color: #fff;
  box-shadow: 0 1px 20px var(--secondary-color);
  transition: all 0.2s ease-in-out;
  margin: 0;
  border: 1px solid #000;
  cursor: pointer;
}

.profile:hover {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--accent-color);
}

@media screen and (max-width: 768px) {
  .profile {
    width: 100%;
  }
}

.profile-item {
  margin-bottom: 10px;
}

.profile-item i {
  margin-right: 10px;
}

.profile-item span {
  margin-left: 10px;
}

/* contacts cards  */

.contact-card {
  display: flex;
  flex-direction: column;
  flex: 1;
  margin: 0;
}

.contact-area {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0;
}

.card {
  width: auto;
  padding: 10px;
  line-height: var(--margin-s);

  margin-bottom: 10px;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(56, 48, 48, 0.05);
}

.card-header {
  display: flex;
  flex: 1;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  margin: 0;
}

/* contact Details  */

.name {
  font-weight: 600;
  font-size: 1.25rem;
}

.email a {
  font-size: 1rem;
  color: #666;
}

.address {
  font-size: 1rem;
  color: #666;
}

.phone a {
  font-size: 1rem;
  color: #666;
}

.lead {
  font-size: 1rem;
  color: var(--background-color);
  background-color: var(--accent-color);
  margin-top: var(--margin-xl);
}

#1 {
  color: red;
}
#2 {
  color: red;
}
#3 {
  color: red;
}
#4 {
  color: red;
}
#4 {
  color: red;
}
#6 {
  color: red;
}
#7 {
  color: red;
}

#8 {
  color: red;
}

#Qualification p {
  color: red;
}

#Qualification {
  font-weight: bold;
  color: #0072c6;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.top-menu {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
}

/* login form  */

.login-area {
  display: flex;
  flex: column;
  justify-content: center;
  align-content: center;
}

.login-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  background-color: #f1f1f1;
  border-radius: 5%;
  padding: var(--padding-xl);
}

@media screen and (min-width: 768px) {
  .login-form {
    width: 30%;
  }
}

.login-form__title {
  margin-bottom: 20px;
}

.login-form__group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  width: 100%;
}

.login-form__label {
  font-weight: bold;
  margin-bottom: 5px;
}

.login-form__input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.login-form__submit-button {
  background-color: #ff7a59;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.login-form__error {
  color: red;
  font-weight: bold;
  margin-top: 10px;
}

/* social siging  */

.btn-google-signin {
  background-color: #dd4b39;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.btn-facebook-signin {
  background-color: #3b5998;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.autho-login {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.request-access {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  .desktop-menu {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .mobile-menu {
    display: none;
  }
  .dropdown-toggle {
    float: right;
    margin-bottom: 20px;
  }
}

/* Dropdown menu */

.mobile-menu {
  position: relative;
  left: auto;
  right: 0;
  padding-left: 20px;
  padding-top: 20px;
}

/* dashboard  */

.dashboard {
  display: flex;
  flex-direction: column;
}

.chat-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 300px;
  height: 400px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) dropdown;
  /* Additional styles can be added as needed */
}

.whatsapp-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  background-color: #f5f5f5;
}

.message-form {
  margin-bottom: 20px;
}

.message-form input {
  margin-right: 10px;
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.message-form button {
  padding: 5px 10px;
  background-color: #4caf50;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.message-response {
  margin-bottom: 10px;
  font-family: Arial, sans-serif;
}

.incoming-message {
  background-color: #dcf8c6;
  margin-bottom: 10px;
  padding: 10px;
  border-radius: 5px;
}

.outgoing-message {
  background-color: #e5e5ea;
  margin-bottom: 10px;
  padding: 10px;
  border-radius: 5px;
  text-align: right;
}

.chat-contact {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 10px;
  cursor: pointer;
  margin: 5px;
  border-radius: 5px;
  box-shadow: 0 1px 2px rgba(56, 48, 48, 0.05);
}

.chat-contact p {
  margin: 0;
}

.chat-contact:hover {
  background-color: #f1f1f1;
}

.chat-contact.active {
  background-color: #e0e0e0;
}

.contact-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
}

.contact-name {
  font-weight: bold;
}

.contact-message {
  color: #888;
}

/* interactions */

.interactions-list {
  display: flex;
  flex-direction: column;
}

.interactions-list ul {
  display: flex;
  flex-direction: column;
}

.interaction-item {
  display: flex;
  flex: 1;
  margin-bottom: 20px;
  padding: 10px;
  background-color: #fff;
  transition: background-color 0.3s;
}

.interaction-item p h4 {
  display: flex;
  flex-direction: column;
  margin-left: 20px;
}

.interaction-item:hover {
  background-color: #e0e0e0;
}

@media (min-width: 768px) {
  .interaction-item {
    flex-basis: 33.33%;
  }
}

/* campaign  */

.campaign {
  display: flex;
  flex-direction: column;
  margin: var(--margin-xl);
  padding: var(--margin-xl);
}

.campaign table {
  width: 100%;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.campaign table th,
.campaign table td {
  padding: 10px;
  text-align: left;
}

.campaign table th {
  background-color: var(--accent-color);
  color: #fff;
}

.campaign table th,
.campaign table td {
  border: 1px solid #ddd;
}

.campaign table tr:nth-child(even) {
  background-color: #f2f2f2;
}

.campaign table tr:hover {
  background-color: #ddd;
}

.campaign table td a {
  color: var(--accent-color);
  text-decoration: none;
}

.card {
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 1rem;
}

@media (max-width: 768px) {
  .card {
    padding: 0.5rem;
  }
}

/* customer details contact form  */

.contact-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  height: 60vh;
  overflow: scroll;
  margin-bottom: 10px;
}

.contact-form label {
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.contact-form input {
  width: 100%;
  padding: 0.5rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .contact-form {
    -moz-column-gap: 2rem;
         column-gap: 2rem;
    -moz-column-count: 2;
         column-count: 2;
  }
}

/* Marketing Settings */

.Marketing-list {
  background-color: #f2f2f2;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow: scroll;
  height: 60vh;
}

.Marketing-list h1 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #333333;
}

.Marketing-list ul {
  list-style-type: none;
  padding: 0;
}

.Marketing-list li {
  margin-bottom: 20px;
  padding: 10px;
  background-color: #ffffff;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.Marketing-list li p {
  margin: 0;
  color: #666666;
}

.Marketing-list li span {
  font-weight: bold;
}

.Marketing-list li a {
  color: #337ab7;
  text-decoration: none;
}

.Marketing-list li a:hover {
  text-decoration: underline;
}

.Marketing-list button {
  background-color: #4caf50;
  color: white;
  border: none;
  padding: 8px 16px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  margin-right: 10px;
}

.Marketing-list button#update {
  background-color: #f0ad4e;
}

.Marketing-list button#delete {
  background-color: #d9534f;
}

/* marketing List details  */

.marketing-list-details {
  padding: 20px;
  border-radius: 5px;
  background-color: #f2f2f2;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.marketing-list-details h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #333333;
}

.marketing-list-details .details-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 10px;
}

.marketing-list-details .detail-item {
  background-color: #ffffff;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.marketing-list-details .detail-item span {
  font-weight: bold;
}

.marketing-list-details .detail-item p {
  margin: 0;
  color: #666666;
}

/* Button IDs  */

#update {
  background-color: #128c7e;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 8px 16px;
  margin-left: 10px;
  cursor: pointer;
  margin-right: 10px;
}

#delete {
  background-color: #ff7a59;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 8px 16px;
  margin-left: 10px;
  cursor: pointer;
  margin-right: 10px;
}

#create {
  background-color: #0a6425;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 8px 16px;
  margin-left: 10px;
  margin-right: 10px;
  cursor: pointer;
}

#tab {
  background-color: var(--accent-color);
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 8px 16px;
  margin-left: 10px;
  margin-right: 10px;
  cursor: pointer;
}

.badge {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 10px;
  background-color: #ff0000; /* replace with desired background color */
  color: #ffffff; /* replace with desired text color */
}

.badge-others {
  display: inline-block;
  padding: 4px 8px;
  margin-right: var(--padding-xl);
  margin: var(--margin-s);
  border-radius: 10px;
  background-color: #c3ac91; /* replace with desired background color */
  color: #ffffff; /* replace with desired text color */
}

.header-buttons {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 10px;
  margin-top: 10px;
  gap: 20px;
}

.header-buttons button {
  background-color: #ff7a59;
  color: #fff;
  border: none;
  padding: 8px 16px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  margin-right: 10px;
}

/* contact cards  */
.top-section {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: var(--margin-medium);
  margin-bottom: var(--margin-medium);
  width: 100%;
}

@media (max-width: 768px) {
  /* Styles for smaller screens */
  .top-section {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .top-section input select {
    height: 20px;
  }

  div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: var(--padding-small);
    width: 100%;
  }
}

/* Header Metrics  */

.header-metrics {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  /* gap: var(--margin-m); */
  /* padding: var(--padding-xl); */
  margin-bottom: var(--margin-xl);
  overflow-y: auto; /* Enable vertical scrolling */
  max-height: 100vh; /* Set the maximum height to 100vh */
}

.header-metrics-container {
  /* flex: 2; */
  flex-basis: 20%;
  box-shadow: 0 1px 20px rgba(42, 39, 39, 0.05);
  background-color: #fff;
  border-radius: 5px;
  padding: var(--padding-xl);

  /* width: 500px; */
}

.header-metrics-container h2 {
  margin-top: 0;
  margin-bottom: var(--margin-m);
  font-size: 44px;
  font-weight: bold;
  color: #333333;
  text-align: center;
  padding: var(--padding-m);
  text-shadow: 0 1px 20px rgba(42, 39, 39, 0.05);
}

.header-metrics-container h2:nth-of-type(1) {
  color: red;
}

.header-metrics-container h2:nth-of-type(2) {
  color: blue;
}

.header-metrics-container h2:nth-of-type(3) {
  color: green;
}

/* Add more styles for other elements if needed */

.header-metrics-container h3 {
  margin-top: 0;
  margin-bottom: var(--margin-m);
  font-size: 24px;
  font-weight: bold;
  color: #333333;
  text-align: center;
  padding: var(--padding-m);
  text-transform: capitalize;
}

@media only screen and (max-width: 768px) {
  .header-metrics-container {
    flex-basis: 100%;
    height: auto;
  }
}

/* kanban list */
.kanban-board {
  display: flex;
  height: 100vh;
  overflow: scroll;
}

.kanban-column {
  flex: 1;
  margin: 10px;
  padding: 10px;
  border: 1px solid #ccc;
  background-color: #f9f9f9;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
}

.kanban-card {
  margin: 5px;
  padding: 5px;
  border: 1px solid #ddd;
  background-color: #fff;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.2);
}

/* Ratings  */

.rating-container {
  display: inline-block;
  font-size: 0; /* Hide the text label */
}

.rating-container input[type="radio"] {
  display: none; /* Hide the radio buttons */
}

.rating-container label {
  font-size: 30px; /* Adjust the size of the stars */
  cursor: pointer;
  color: #ccc; /* Color of inactive stars */
  margin: 0 5px; /* Adjust the spacing between stars */
}

.rating-container input[type="radio"]:checked + label {
  color: #ffcc00; /* Color of the selected star and stars to the left */
}

.about-us-container {
  font-family: "Arial", sans-serif;
  /* max-width: 800px; */
  margin: 0 auto;
  padding: 20px;
  background-color: #fff;
  overflow: scroll;
  height: 80vh;
}

/* Apply styles to nested elements using CSS selectors */
.about-us-container h1 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
}

.about-us-container h2 {
  font-size: 1.5rem;
  color: #666;
  margin-top: 30px;
}

.about-us-container p {
  font-size: 1rem;
  color: #444;
  line-height: 1.4;
}

.about-us-container ul {
  list-style-type: disc;
  margin-left: 20px;
}

.about-us-container li {
  margin-bottom: 5px;
}

.about-us-container .testimonial {
  background-color: #f9f9f9;
  border-left: 4px solid #3498db;
  padding: 10px;
  margin: 20px 0;
}

.about-us-container .testimonial footer {
  font-style: italic;
  color: #888;
}

.about-us-container .cta-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #3498db;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

.about-us-container .cta-button:hover {
  background-color: #1e87db;
}

/* website configuratin page  */

.web-config {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100vh;
  overflow-y: scroll;
}

/* Events CSS  */

.event-item {
  display: flex;
  margin-bottom: 20px;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}

.event-subitem {
  flex: 1;
  margin-right: 20px;
  margin-left: 20px;
  margin-top: 20px;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}

.event-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
}

.event-description {
  color: #555;
}

.event-location {
  font-style: italic;
  color: #888;
}

.event-date {
  margin-top: 5px;
  color: #888;
}

.event-visibility {
  font-weight: bold;
  color: green;
}

.no-events {
  margin-top: 20px;
  font-style: italic;
  color: #888;
}

.event-image {
  margin-top: 10px;
  width: 100%;
  height: auto;
  border-radius: 4px;
  -o-object-fit: cover;
     object-fit: cover;
}

.event-button {
  margin-top: 10px;
  padding: 8px 12px;
  background-color: #4285f4;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.event-button:hover {
  background-color: #3367d6;
}

/* Careers Section  */

.career-item {
  margin-bottom: 20px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.career-item h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.career-item p {
  margin: 0;
}

.career-item p.location {
  font-weight: bold;
}

.career-item p.application-deadline {
  color: #666666;
}

.career-item p.open {
  color: green;
}

.career-item p.closed {
  color: red;
}

.career-item button {
  margin-top: 10px;
  padding: 5px 10px;
  background-color: #128c7e;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

/* Tenders CSS  */

.tender-item {
  margin-bottom: 20px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.tender-item h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.tender-item p {
  margin: 0;
}

.tender-item p.publication-date {
  font-weight: bold;
}

.tender-item p.closing-date {
  color: #666666;
}

.tender-item p.open {
  color: green;
}

.tender-item p.closed {
  color: red;
}

.tender-item button {
  margin-top: 10px;
  padding: 5px 10px;
  background-color: #128c7e;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.web-config {
  list-style-type: none;
  padding: 0;
}

/* Promotions CSS  */

.promotion-item {
  margin-bottom: 20px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #f6f7f8;
}

.promotion-item h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.promotion-item p {
  margin: 0;
}

.promotion-item p.start-date,
.promotion-item p.end-date {
  color: #666666;
}

.promotion-item img {
  max-width: 100%;
  margin-top: 10px;
  border-radius: 5px;
}

.promotion-item button {
  margin-top: 10px;
  padding: 5px 10px;
  background-color: #128c7e;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

/* Publication */

.publication-item {
  margin-bottom: 20px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #f6f7f8;
}

.publication-item h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.publication-item p {
  margin: 0;
}

.publication-item p.publication-date {
  color: #666666;
}

.publication-item a {
  display: inline-block;
  margin-top: 10px;
  padding: 5px 10px;
  background-color: #128c7e;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}

.publication-item a:hover {
  background-color: #0f6e5c;
}

.publication-item button {
  margin-top: 10px;
  padding: 5px 10px;
  background-color: #128c7e;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

/* Download CSS */

.file-item {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #f6f7f8;
}

.file-item h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.file-item p {
  margin: 0;
}

.file-item p.file-path {
  color: #666666;
}

.file-item a {
  display: inline-block;
  margin-top: 10px;
  padding: 5px 10px;
  background-color: #128c7e;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}

.file-item a:hover {
  background-color: #0f6e5c;
}

.file-item button {
  margin-top: 10px;
  padding: 5px 10px;
  background-color: #128c7e;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

/* Benefits CSS */

.benefit-list {
  list-style-type: none;
  padding: 0;
  height: 60vh;
  overflow-y: scroll;
}

.benefit-item {
  margin-bottom: 20px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #f6f7f8;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-5px);
}

.benefit-item h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.benefit-item p {
  margin: 0;
}

.benefit-item button {
  margin-top: 10px;
  padding: 5px 10px;
  background-color: #128c7e;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.benefit-item a {
  margin: 10px;
  background-color: var(--accent-color);
  color: #fff;
  padding: 5px;
  border-radius: 5px;
}

/* sort-dropdown */

.sort-dropdown {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 10px;
  border: 1px solid #ccc;
  margin-bottom: 20px;
  gap: 20px;
}

.sort-dropdown input select {
  margin-top: 10px;
  padding: 5px 10px;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  flex: 1;
  width: -moz-fit-content;
  width: fit-content;
}
/* Filter Area  */

.filter-area {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 20px;
  background-color: #fff;
  gap: 10px;
  padding: 10px;
}

.filter-section {
  display: flex;
  align-items: center;
  margin-right: 20px;
  gap: 20px;
}

.filter-section label {
  margin-right: 10px;
}

.filter-section select,
.filter-section input {
  padding: 5px;
}

.sorting-section {
  display: flex;
  align-items: center;
}

.sorting-section label {
  margin-right: 10px;
}

/* chat box  */

