
* {
  box-sizing: border-box;
}

body {
  background-color: #222; /* Change the background color */
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  height: 100%;
  margin: 0;
}

.container {
  display: flex;
  flex-direction: column;
  border-radius: 5px;
  width: 100%;
  min-height: 100vh;
}

.form-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}




h1 {
  text-align: center;
  font-family: Roboto, sans-serif;
  font-size: 32px;
  margin-bottom: 40px;
  color: #007bff;
}

p {
  text-align: justify;
}

button {
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 14px;
  cursor: pointer;
  display: inline-block;
}


button:hover {
  background-color: #505050; /* Change the button hover background color */
}

/* Drag and drop */
.drop-area {
  border: 2px dashed #ccc;
  border-radius: 10px;
  padding: 80px;
  text-align: center;
  position: relative;
  cursor: pointer;
}

.drop-area:hover {
  border-color: #007bff;
}

.drop-area input[type="file"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.drop-area.drag-over {
  border-color: #007bff;
  background-color: rgba(0, 123, 255, 0.1);
}

/* Loader styling */
.loader {
  border: 16px solid;
  border-radius: 50%;
  border-top: 16px solid transparent;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
  margin: 50px auto;
  display: none;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
    border-color: #84fab0;
  }
  25% {
    border-color: #8fd3f4;
  }
  50% {
    border-color: #ff6384;
  }
  75% {
    border-color: #e9d460;
  }
  100% {
    transform: rotate(360deg);
    border-color: #84fab0;
  }
}

.chat-container {
  display: flex;
  flex-direction: column;
  height: 95vh;
  justify-content: space-between;
  border: 1px solid #ccc;
  border-radius: 20px;
  background-color: white; /* Change the chat container background color */
  padding: 20px;
  overflow-y: auto;
}


.chat-input {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 40px;
  margin-top: 25px;
}

.chat-input input[type="text"] {
  flex-grow: 1;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.chat-message {
  margin-bottom: 10px;
}

.new-resume-btn {
  margin-left: 10px;
}


@keyframes typewriter {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

.intro-text {
  font-family: 'Roboto', Arial, sans-serif; /* Change the font family to Roboto */
  font-size: 18px; /* Increase the font size */
  overflow: hidden;
  border-right: .15em solid #007bff;
  white-space: nowrap;
  animation: typewriter 4s steps(40, end) 1s 1 normal both;
}

.saved-screens {
  list-style-type: none;
  padding: 0;
}

.saved-screens li {
  padding: 5px;
  cursor: pointer;
}

.saved-screens li:hover {
  background-color: #f8f9fa;
}

.side-panel {
  position: fixed;
  top: 40;
  left: 0;
  width: 250px;
  height: 100%;
  background-color: #f8f9fa;
  border-right: 1px solid #dee2e6;
  display: flex;
  flex-direction: column;
  z-index: 1000; /* Add this property to ensure the side-panel stays on top of the main content */
}

.side-panel-top {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Change 'center' to 'flex-start' */
  border-bottom: 1px solid #dee2e6;
  padding: 30px;
}

.side-panel-bottom {
  flex-grow: 1;
  padding: 30px;
  overflow-y: auto;
}

.main-content {
  margin-left: 0px;
  margin-top: 20px; /* Add this property to make space for the top banner */
  flex-grow: 1;
  padding: 30px;
  background-image: linear-gradient(120deg, #84fab0 0%, #8fd3f4 50%);
}



.main-content-account {
  margin-left: 0px;
  margin-top: 20px; /* Add this property to make space for the top banner */
  margin-botton: 0px;
  flex-grow: 1;
  padding: 30px;
  background-image: linear-gradient(120deg, #84fab0 0%, #8fd3f4 100%);
}

.results-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.results-table th,
.results-table td {
  border: 1px solid #ccc;
  padding: 10px;
  text-align: left;
  font-size: 14px;
}

.results-table th {
  background-color: #f2f2f2;
  font-weight: 500;
}

.results-table tbody tr:nth-child(odd) {
  background-color: #f9f9f9;
}

.results-table tbody tr:nth-child(even) {
  background-color: #ffffff;
}

.results-table tbody tr:hover {
  background-color: #eaeaea;
}

.results-table ul {
  margin: 0;
  padding-left: 20px;
}

#results-table-body tr td {
  color: #222;
}

.result-row {
  border-bottom: 1px solid #e5e7eb; /* Change the color and thickness as desired */
}


.gradient-background {
  background-image: linear-gradient(120deg, #84fab0 0%, #8fd3f4 100%);
}

.login-form {
  padding: 40px;
  border-radius: 5px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  max-width: 400px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: none;
}

.login-form label {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}

/* Style input elements */
.login-form input {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px; /* Increase the font size */
  font-family: 'Roboto', Arial, sans-serif; /* Change the font family to Roboto */
}


.export-btn-container {
  position: relative;
}

.export-btn {
  position: absolute;
  top: -10px;
  right: 0;
  font-size: 12px;
  padding: 5px 10px;
  background-color: #007BFF;
  color: #FFFFFF;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.export-btn:hover {
  background-color: #0056b3;
}

.drag-handle {
  cursor: move; /* Change the cursor to a move icon when hovering over the drag handle */
  display: inline-block;
  padding: 4px;
}

.feedback-btn {
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 16px;
  padding: 4px;
}

.feedback-btn:focus {
  border: 1px solid #6B7280;
  border-radius: 4px;
}

/* Top Banner CSS */
/* Top Banner CSS */
/* Top Banner CSS */

/* Add this to your style.css file */
.top-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white; /* Change background-color property to white */
  border-bottom: 1px solid #D1D5DB;
  padding: 20px 20px;
  position: fixed;
  width: 100%;
  height: 30px; /* reduce the height */
}

.logo {
  max-height: 40px;
  max-width: 200px;
}

.user-profile {
  display: flex;
  align-items: center;
  position: relative;
}

.user-name {
  margin-right: 10px;
}

.profile-circle {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #93C5FD;
  text-align: center;
  line-height: 40px;
  font-size: 20px;
  color: white;
  cursor: pointer;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 45px;
  right: 0;
  background-color: #FFFFFF;
  border: 1px solid #D1D5DB;
  border-radius: 6px;
  padding: 4px 0;
  min-width: 150px;
  z-index: 9999;
}

.dropdown-item {
  padding: 8px 16px;
  cursor: pointer;
  text-decoration: none;
  color: #374151;
  display: block;
}

.dropdown-item:hover {
  background-color: #F3F4F6;
}



/* Top Banner CSS */
/* Top Banner CSS */
/* Top Banner CSS */


/* Sign up CSS */
/* Sign up CSS */
/* Sign up CSS */

.signup-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-image: linear-gradient(120deg, #84fab0 0%, #8fd3f4 100%);
}

/* Sign up form */
.signup-form {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.signup-form label {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}

.signup-form input {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
  font-family: 'Roboto', Arial, sans-serif;
}

.signup-form button {
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 12px 24px;
  font-size: 16px;
  cursor: pointer;
  display: inline-block;
  font-family: 'Roboto', Arial, sans-serif;
}

.signup-form button:hover {
  background-color: #0069d9;
}

/* Login CSS */
/* Login CSS */
/* Login CSS */


/* Login form */
.login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-image: linear-gradient(120deg, #84fab0 0%, #8fd3f4 100%);
}


.login-form {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.login-form label {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}

.login-form input {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
  font-family: 'Roboto', Arial, sans-serif;
}

.login-form button {
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 12px 24px;
  font-size: 16px;
  cursor: pointer;
  display: inline-block;
  font-family: 'Roboto', Arial, sans-serif;
}

.login-form button:hover {
  background-color: #0069d9;
}


.account-info {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.delete-account {
  background-color: #f44336;
  color: white;
  font-weight: 500;
  padding: 10px 20px;
  margin-top: 20px;
  border-radius: 5px;
  cursor: pointer;
  border: none;
}

.delete-account:hover {
  background-color: #d32f2f;
}


.profile-circle svg {
  width: 10px;
  height: 6px;
  fill: #333; /* change to desired color */
  transition: transform 0.2s ease-out;
}

.profile-circle {
  border-radius: 50%;
  width: 25px;
  height: 25px;
  background-color: #fff;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}


