:root {
  --primary: #001529;      /* Dark blue */
  --secondary: #0B5FFF;    /* Bright blue */
  --tertiary: #000000;     /* Black */
  --light: #fafafa;        /* Light gray */
  --dark: #272f32;         /* Dark gray */
  --error: rgb(228, 46, 1);/* Red (error color) */
  --spacing-one: calc(1rem * 0.5);
  --spacing-two: calc(1rem);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Karla', sans-serif;
  font-weight: 400;
  line-height: 1.5;
  font-size: 16px;
  color: #272f32;
  color: var(--dark);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Rubik', sans-serif;
  font-weight: 500;
  margin: 5px 0;
  line-height: 1.25;
}

h1 {
  font-size: 2.25rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  font-size: 1.1rem;
  margin-top: 0;
}

a {
  color: #000000;
  color: var(--tertiary);
  text-decoration: none;
  font-weight: bold;
}

a:hover {
  text-decoration: underline;
}

header {
  background: #001529;
  background: var(--primary);
}

header a {
  color: #fafafa;
  color: var(--light);
}

button {
  font-size: 1rem;
  text-decoration: none;
  padding: 0.25rem 1rem;
  border-radius: .5rem;
  border: none;
  outline: none;
  cursor: pointer;
  margin: 0 1px;
  background-color: #0B5FFF;
  background-color: var(--secondary);
}

button:hover {
  opacity: .8;
}

button[disabled] {
  cursor: default;
  opacity: .8;
}

img {
  max-width: 100%;
}

span[role="img"] {
  cursor: default;
}

form {
  width: 100%;
}

input {
  font-size: 1rem;
  padding: 0.25rem;
  border: 1px solid #272f32;
  border: 1px solid var(--dark);
  outline: none;
  border-radius: 3px;
  transition: box-shadow 0.2s;
}

input:focus {
  border: 1px solid #0B5FFF;
  border: 1px solid var(--secondary);
  box-shadow: 0 0 .25rem rgba(0, 0, 0, .5);
}

.container {
  width: 85%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.flex-row {
  display: flex;
  flex-wrap: wrap;
}

.space-between {
  justify-content: space-between;
}

.flex-end {
  justify-content: flex-end;
}

.mx-1 {
  margin-right: calc(1rem * 0.5);
  margin-right: var(--spacing-one);
  margin-left: calc(1rem * 0.5);
  margin-left: var(--spacing-one);
}

.mx-2 {
  margin-right: calc(1rem);
  margin-right: var(--spacing-two);
  margin-left: calc(1rem);
  margin-left: var(--spacing-two);
}

.my-1 {
  margin-top: calc(1rem * 0.5);
  margin-top: var(--spacing-one);
  margin-bottom: calc(1rem * 0.5);
  margin-bottom: var(--spacing-one);
}

.my-2 {
  margin-top: calc(1rem);
  margin-top: var(--spacing-two);
  margin-bottom: calc(1rem);
  margin-bottom: var(--spacing-two);
}

.px-1 {
  padding-right: calc(1rem * 0.5);
  padding-right: var(--spacing-one);
  padding-left: calc(1rem * 0.5);
  padding-left: var(--spacing-one);
}

.px-2 {
  padding-right: calc(1rem);
  padding-right: var(--spacing-two);
  padding-left: calc(1rem);
  padding-left: var(--spacing-two);
}

.py-1 {
  padding-top: calc(1rem * 0.5);
  padding-top: var(--spacing-one);
  padding-bottom: calc(1rem * 0.5);
  padding-bottom: var(--spacing-one);
}

.py-2 {
  padding-top: calc(1rem);
  padding-top: var(--spacing-two);
  padding-bottom: calc(1rem);
  padding-bottom: var(--spacing-two);
}

.card {
  width: 25%;
  text-align: center;
}

.error-text {
  color: rgb(228, 46, 1);
  color: var(--error);
}

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

.button-color {
  background-color: #2ca4cc !important;
  color: white !important;
}

.button-color:hover {
  background-color: #5ce4f4 !important;
  border-color: #5ce4f4  !important; /* Change as needed */
  color: white !important; /* Change as needed */
}

.button-color-premium {
  background-color: #fcdc5c !important;
  color: black !important;
}

.button-color-premium:hover {
  background-color: #f7e9a9 !important;
  border-color: #f7e9a9  !important; /* Change as needed */
  color: #aa8800 !important; /* Change as needed */
}

.button-color-premium:disabled,
.button-color-premium.disabled {
  background-color: #e6c854 !important; /* Disabled background color */
  color: #a0a0a0 !important; /* Disabled text color */
  border-color: #d0d0d0 !important; /* Disabled border color */
  cursor: not-allowed !important; /* Change cursor to not-allowed */
}

/* For Float Button */
.float-button-color  {
  background-color: #2ca4cc !important;
  width: 50px; /* Adjust as needed */
  height: 50px; /* Adjust as needed */
  font-size: 20px; /* Adjust as needed */
}

.float-button-color div {
  background-color: #2ca4cc !important;
  color: white !important;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}

.button-pulse {
  animation: pulse 5s infinite;
}

@keyframes todo-pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}


.todo-pulse {
  animation: todo-pulse 4s infinite;
  color:  #2ca4cc !important
}

@keyframes match-pulse {
  0% {
    transform: scale(1.25);
  }
  50% {
    transform: scale(1.40);
  }
  100% {
    transform: scale(1.25);
  }
}

.view-matches-button {
  animation: match-pulse 5s infinite;
}

.apply-button {
  background-color: #2ca4cc !important;
  color: white !important;
  animation: pulse 5s infinite;
}


.fade-enter {
  position: absolute;
  width: 100%; /* Set explicit width */
  height: auto; /* Set explicit height */
  transform: translateX(100%);
  z-index: 2;
}

.fade-enter-active {
  transform: translateX(0);
  transition: transform 1500ms;
}

.fade-exit {
  position: absolute;
  width: 100%; /* Set explicit width */
  height: auto; /* Set explicit height */
  opacity: 1;
  z-index: 1;
}

.fade-exit-active {
  opacity: 0;
  transition: opacity 1500ms; /* Increased opacity transition duration */
}

.no-scroll-background-main {
  overflow: hidden;
}

.refer-to-contact {
  color: #2ca4cc !important;
  -webkit-text-decoration: underline #272f32;
          text-decoration: underline #272f32;
  -webkit-text-decoration: underline var(--dark);
          text-decoration: underline var(--dark);
}






/* Add a background color to sections */
.dashboard-section,
.recommended-jobs-section,
.follow-up-jobs-section {
  /* margin-bottom: 30px;
  margin-right: 40px;
  margin-left: 40px; */
  background-color: #fff;
  /* Light gray background */
  padding: 20px;
  /* Add padding for better spacing inside sections */
  border-radius: 8px;
  /* Add rounded corners to sections */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  /* Add a subtle shadow */
  border-color: #ddd;
}

/* Style headings */
h1 {
  font-size: 24px;
  /* Increase font size for headings */
  color: #333;
  /* Dark text color */
}

h2 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 24px;
  /* Increase font size for headings */
  color: #333;
  /* Dark text color */
}

/* Add spacing between columns and rows in the recommended job and follow-up job sections */
.recommended-jobs-section .ant-row,
.follow-up-jobs-section .ant-row {
  margin-right: -8px;
  margin-left: -8px;
}

.recommended-jobs-section .ant-col,
.follow-up-jobs-section .ant-col {
  padding: 0 8px;
}

/* Add space between items in the recommended job and follow-up job sections */
.recommended-jobs-section .ant-col,
.follow-up-jobs-section .ant-col {
  margin-bottom: 16px;
  /* Adjust as needed */
}

/* .flex-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
} */

.homepage {
  margin-top: 5px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;  /* changed from center */
  justify-content: space-between;

}
.application-stages {
  order: 1
}

.mainStats {
  order: 3;
  width: 30%;
  height: 100%;
  margin-bottom: 10px;
}

.toDos {
  order: 2;
  width: 69%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}


/* Add this to your CSS file or within a <style> tag in your component */
@media (max-width: 768px) {
  .homepage {
    width: 100%;
    margin: 0 auto;
    flex-direction: column;
  }

  .application-stages {
    order: 3 !important; /* Keep application-stages at the bottom on mobile */
  }

  .mainStats {
    order: 2 !important; /* Keep mainStats in the middle on mobile */
    margin-top: 10px;
  }

  .toDos {
    order: 1 !important;/* Move toDos to the top on mobile */
  }

  /* .dashboard-section .ant-row {
    
  } */

  .dashboard-section .ant-row > div {
    width: 100%;
  }

  .flex-container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .flex-container > div {
    width: 100%;
  }

  .dashboard-section {
    width: 100%;
    display: flex;
    overflow-y: auto;
    white-space: nowrap;
  }
}
/* Style cards within sections */
.ant-card {
    border: 1px solid #ddd; /* Add a border around cards */
    border-radius: 8px; /* Add rounded corners to cards */
    transition: box-shadow 0.3s ease; /* Add a smooth transition for hover effect */
  
    /* Style card content */
    .ant-card-body {
      padding: 16px; /* Add padding to card content */
    }
  }
  
  /* Hover effect for cards */
  .ant-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add a subtle shadow on hover */
    transform: translateY(-2px); /* Lift the card slightly on hover */
  }
  
  /* Style Statistic components */
  .ant-statistic {
    text-align: center; /* Center align the statistics */
    margin-bottom: 16px; /* Add space between statistics */
    color: #555; /* Dark text color */
  }
  
  /* Style buttons within sections */
  .ant-btn {
    margin-right: 8px; /* Add space between buttons */
    font-weight: bold; /* Make button text bold */
  }
  
  /* Add hover effect for buttons */
  .ant-btn:hover {
    background-color: #ddd;
    color: #333;
  }

  .application-statistic-col {
    width: 15%;
  }

  /* Add this to your CSS file or within a <style> tag in your component */
@media (max-width: 768px) {
  .application-statistic-col {
    flex: 0 0 100%;
    margin-right: 10px; /* Adjust as needed for spacing */
    margin-bottom: 7.5px;
  }
  
}
  
/* Modern AI Co-pilot ToDo Grid Styles */

.todo-section-container {
    background: #ffffff;
    border-radius: 16px;
    padding: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(24, 144, 255, 0.1);
    margin-bottom: 24px;
}

/* Welcome Header Styles */
.welcome-header {
    background: linear-gradient(135deg, #1890ff 0%, #096dd9 100%) !important;
    border-radius: 16px !important;
    padding: 32px 24px !important;
    margin-bottom: 18px !important;
    box-shadow: 0 4px 20px rgba(24, 144, 255, 0.15) !important;
}

.welcome-content {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 24px !important;
}

.welcome-text {
    flex: 1 1 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
}

.welcome-greeting {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    margin: 0 !important;
}

.welcome-title {
    color: #ffffff !important;
    font-size: 28px !important;
    font-weight: 700 !important;
    margin: 0 !important;
    line-height: 1.2 !important;
}

.welcome-subtitle {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    margin: 0 !important;
    line-height: 1.4 !important;
}

.welcome-actions {
    display: flex !important;
    gap: 12px !important;
    flex-shrink: 0 !important;
}

.welcome-button {
    height: 40px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    padding: 0 20px !important;
    transition: all 0.3s ease !important;
}

.welcome-button.secondary {
    background: #ffffff !important;
    border: 1px solid #ffffff !important;
    color: #1890ff !important;
}

.welcome-button.secondary:hover {
    background: #f0f8ff !important;
    border-color: #f0f8ff !important;
    color: #096dd9 !important;
    transform: translateY(-1px) !important;
}

.welcome-button.primary {
    background: #ffffff !important;
    border: 1px solid #ffffff !important;
    color: #1890ff !important;
}

.welcome-button.primary:hover {
    background: #f0f8ff !important;
    border-color: #f0f8ff !important;
    color: #096dd9 !important;
    transform: translateY(-1px) !important;
}

/* AI To-Do Section Header */
.todo-section-header {
    margin-bottom: 12px !important;
    padding: 0 4px !important;
}

.todo-section-title {
    color: #262626 !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    margin: 0 0 8px 0 !important;
    line-height: 1.3 !important;
}

.todo-section-subtitle {
    color: #595959 !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    margin: 0 !important;
    line-height: 1.4 !important;
}

.todo-grid-container {
    padding: 16px 0;
}

/* AI Todo Card Styles */
.ai-todo-card {
    background: #ffffff !important;
    border-radius: 12px !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06) !important;
    border: 1px solid rgba(24, 144, 255, 0.08) !important;
    transition: all 0.3s ease !important;
    height: 100% !important;
    overflow: hidden !important;
}

.ai-todo-card:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 20px rgba(24, 144, 255, 0.12) !important;
    border-color: rgba(24, 144, 255, 0.15) !important;
}

.todo-card-content {
    padding: 16px !important;
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    gap: 12px !important;
}

/* Header Section with Icon and AI Tag */
.todo-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    margin-bottom: 4px !important;
}

.icon-section {
    flex-shrink: 0 !important;
}

.todo-icon {
    width: 48px !important;
    height: 48px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #f0f8ff !important;
    border-radius: 50% !important;
    border: 2px solid #d6e4ff !important;
    color: #1890ff !important;
    font-size: 20px !important;
    transition: all 0.3s ease !important;
}

.todo-icon:hover {
    background: #e6f7ff !important;
    border-color: #1890ff !important;
    transform: scale(1.05) !important;
}

.todo-icon .anticon {
    font-size: 20px !important;
    color: #1890ff !important;
}

.ai-tag-section {
    flex-shrink: 0 !important;
}

.ai-recommendation-tag {
    background: #f0f8ff !important;
    border: 1px solid #d6e4ff !important;
    color: #1890ff !important;
    font-size: 10px !important;
    font-weight: 500 !important;
    padding: 2px 6px !important;
    border-radius: 10px !important;
    display: flex !important;
    align-items: center !important;
    gap: 3px !important;
}

.ai-recommendation-tag .anticon {
    font-size: 9px !important;
    color: #1890ff !important;
}

/* Content Section */
.todo-content {
    flex: 1 1 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
}

.todo-title {
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #262626 !important;
    margin: 0 !important;
    line-height: 1.3 !important;
}

.todo-description {
    font-size: 13px !important;
    color: #595959 !important;
    line-height: 1.4 !important;
    margin: 0 !important;
    flex: 1 1 !important;
}

/* Action Button */
.todo-action {
    margin-top: auto !important;
    padding-top: 12px !important;
}

.todo-action-button {
    background: #1890ff !important;
    border: none !important;
    border-radius: 6px !important;
    height: 32px !important;
    font-weight: 500 !important;
    font-size: 13px !important;
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 1px 4px rgba(24, 144, 255, 0.15) !important;
}

.todo-action-button:hover {
    background: #40a9ff !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 2px 8px rgba(24, 144, 255, 0.25) !important;
}

.todo-action-button .anticon {
    font-size: 11px !important;
}

/* Pagination Styles */
.pagination-container {
    margin-top: 24px !important;
    padding: 16px !important;
    background: #fafafa !important;
    border-radius: 10px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
}

.pagination-info {
    font-size: 13px !important;
    color: #595959 !important;
    font-weight: 500 !important;
}

.pagination-controls {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.pagination-button {
    background: #ffffff !important;
    border: 1px solid #d9d9d9 !important;
    border-radius: 5px !important;
    color: #595959 !important;
    font-weight: 500 !important;
    font-size: 13px !important;
    height: 28px !important;
    padding: 0 12px !important;
    transition: all 0.3s ease !important;
}

.pagination-button:hover:not(:disabled) {
    border-color: #1890ff !important;
    color: #1890ff !important;
}

.pagination-button:disabled {
    background: #f5f5f5 !important;
    color: #bfbfbf !important;
    cursor: not-allowed !important;
}

.page-indicator {
    font-size: 13px !important;
    color: #595959 !important;
    font-weight: 500 !important;
    padding: 0 10px !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .welcome-header {
        padding: 24px 20px !important;
        margin-bottom: 20px !important;
    }
    
    .welcome-content {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 20px !important;
    }
    
    .welcome-title {
        font-size: 24px !important;
    }
    
    .welcome-subtitle {
        font-size: 15px !important;
    }
    
    .welcome-actions {
        width: 100% !important;
        justify-content: space-between !important;
        gap: 8px !important;
    }
    
    .welcome-button {
        flex: 1 1 !important;
        max-width: 48% !important;
        font-size: 11px !important;
        padding: 0 8px !important;
        height: 36px !important;
        white-space: nowrap !important;
    }
    
    .todo-section-title {
        font-size: 20px !important;
    }
    
    .todo-section-subtitle {
        font-size: 14px !important;
    }
    
    .todo-card-content {
        padding: 14px !important;
        gap: 10px !important;
    }
    
    .todo-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 8px !important;
    }
    
    .todo-title {
        font-size: 15px !important;
    }
    
    .todo-description {
        font-size: 12px !important;
    }
    
    .pagination-container {
        flex-direction: column !important;
        text-align: center !important;
    }
    
    .pagination-controls {
        justify-content: center !important;
    }
}

/* Special styling for the first card (if needed) */
.todo-card.highlighted {
    background: linear-gradient(135deg, #e6f7ff 0%, #f0f8ff 100%) !important;
    border-color: rgba(24, 144, 255, 0.3) !important;
}

/* Animation for card entrance */
.ai-todo-card {
    animation: fadeInUp 0.6s ease-out !important;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stagger animation for multiple cards */
.ai-todo-card:nth-child(1) { animation-delay: 0.1s; }
.ai-todo-card:nth-child(2) { animation-delay: 0.2s; }
.ai-todo-card:nth-child(3) { animation-delay: 0.3s; }
.ai-todo-card:nth-child(4) { animation-delay: 0.4s; }

/* Weekly Goals Section Styles */
.weekly-goals-section {
    margin-bottom: 2px;
    animation: fadeInUp 0.6s ease-out;
    animation-delay: 0.2s;
    animation-fill-mode: both;
}

.weekly-goals-header {
    margin-bottom: 2px;
    text-align: left;
}

.weekly-goals-title {
    color: #1f2937 !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    margin: 0 0 4px 0 !important;
    letter-spacing: -0.025em;
}

.weekly-goals-subtitle {
    color: #6b7280 !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    margin: 0 !important;
}

.weekly-goals-grid {
    padding: 8px 0;
}

.goal-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 12px 10px;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.goal-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: #d1d5db;
}

.goal-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
}

.goal-label {
    font-size: 11px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.goal-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 100%;
}

.goal-number {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    line-height: 1;
}

.goal-divider {
    font-size: 14px;
    font-weight: 400;
    color: #9ca3af;
}

.goal-target {
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
}

.goal-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #f3f4f6;
    border-radius: 0 0 12px 12px;
    overflow: hidden;
    pointer-events: none;
}

.goal-progress-fill {
    height: 100%;
    transition: width 0.6s ease;
    border-radius: 0 0 12px 12px;
}

/* Goal Progress States */
.goal-start .goal-progress-fill {
    background: linear-gradient(90deg, #ef4444, #dc2626);
}

.goal-progress .goal-progress-fill {
    background: linear-gradient(90deg, #f59e0b, #d97706);
}

.goal-close .goal-progress-fill {
    background: linear-gradient(90deg, #10b981, #059669);
}

.goal-exceeded .goal-progress-fill {
    background: linear-gradient(90deg, #10b981, #059669);
}

.goal-neutral .goal-progress-fill {
    background: linear-gradient(90deg, #6b7280, #4b5563);
}

/* Card State Styling */
.goal-start {
    border-color: #fecaca;
    background: #ffffff;
}

.goal-progress {
    border-color: #fed7aa;
    background: #ffffff;
}

.goal-close {
    border-color: #bbf7d0;
    background: #ffffff;
}

.goal-exceeded {
    border-color: #bbf7d0;
    background: #ffffff;
}

.goal-neutral {
    border-color: #e5e7eb;
    background: #ffffff;
}

/* Hover effects for different states */
.goal-start:hover {
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.15);
}

.goal-progress:hover {
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.15);
}

.goal-close:hover {
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.15);
}

.goal-exceeded:hover {
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.15);
}

/* Responsive adjustments for weekly goals */
@media (max-width: 768px) {
    .weekly-goals-grid {
        padding: 6px 0;
    }
    
    .goal-card {
        padding: 10px 6px;
    }
    
    .goal-number {
        font-size: 16px;
    }
    
    .goal-target {
        font-size: 12px;
    }
    
    .goal-label {
        font-size: 10px;
    }
    
    .goal-content {
        gap: 4px;
    }
    
    .goal-progress {
        gap: 2px;
    }
}
/* Simplified Feedback Component Styles */

.feedback-container {
    width: 100%;
}

.feedback-card {
    background: #ffffff !important;
    border-radius: 16px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
    border: 1px solid rgba(24, 144, 255, 0.1) !important;
    overflow: hidden !important;
}

/* Header Section */
.feedback-header {
    margin-bottom: 24px !important;
}

.feedback-title-row {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
}

.feedback-icon {
    width: 48px !important;
    height: 48px !important;
    background: #f0f8ff !important;
    border: 2px solid #d6e4ff !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 20px !important;
    color: #1890ff !important;
    flex-shrink: 0 !important;
}

.feedback-title {
    color: #262626 !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    margin: 0 !important;
}

/* Content Section */
.feedback-content {
    display: flex !important;
    flex-direction: column !important;
    gap: 32px !important;
}

/* Message Section */
.feedback-message {
    text-align: center !important;
}

.message-text {
    font-size: 16px !important;
    color: #595959 !important;
    line-height: 1.6 !important;
    margin-bottom: 16px !important;
    text-align: left !important;
}

.message-text strong {
    color: #1890ff !important;
    font-weight: 600 !important;
}

/* Contact Button Container */
.contact-button-container {
    text-align: center !important;
}

.contact-toggle-button {
    background: #1890ff !important;
    border: none !important;
    border-radius: 8px !important;
    height: 44px !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 8px rgba(24, 144, 255, 0.2) !important;
    padding: 0 24px !important;
}

.contact-toggle-button:hover {
    background: #40a9ff !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(24, 144, 255, 0.3) !important;
}

/* Contact Form */
.contact-form {
    background: #fafafa !important;
    border-radius: 12px !important;
    padding: 24px !important;
    animation: slideDown 0.3s ease-out !important;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-header {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin-bottom: 20px !important;
}

.form-icon {
    color: #1890ff !important;
    font-size: 18px !important;
}

.form-title {
    font-size: 18px !important;
    font-weight: 600 !important;
    color: #262626 !important;
    margin: 0 !important;
}

.form-fields {
    margin-bottom: 24px !important;
}

.input-group {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
}

.input-label {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #262626 !important;
    margin: 0 !important;
}

.message-input {
    border-radius: 8px !important;
    border: 2px solid #f0f0f0 !important;
    padding: 12px 16px !important;
    font-size: 14px !important;
    transition: all 0.3s ease !important;
    resize: vertical !important;
}

.message-input:focus {
    border-color: #1890ff !important;
    box-shadow: 0 0 0 3px rgba(24, 144, 255, 0.1) !important;
}

.character-count {
    display: flex !important;
    justify-content: flex-end !important;
    margin-top: 4px !important;
}

.count-text {
    font-size: 12px !important;
    color: #8c8c8c !important;
}

/* Form Actions */
.form-actions {
    display: flex !important;
    gap: 12px !important;
    justify-content: flex-end !important;
}

.cancel-button {
    border-radius: 8px !important;
    height: 44px !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    padding: 0 20px !important;
    transition: all 0.3s ease !important;
    border: 2px solid #d9d9d9 !important;
    color: #595959 !important;
}

.cancel-button:hover {
    border-color: #1890ff !important;
    color: #1890ff !important;
    transform: translateY(-1px) !important;
}

/* Submit Button */
.submit-button {
    background: #1890ff !important;
    border: none !important;
    border-radius: 8px !important;
    height: 44px !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 8px rgba(24, 144, 255, 0.2) !important;
    padding: 0 20px !important;
}

.submit-button:hover:not(:disabled) {
    background: #40a9ff !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(24, 144, 255, 0.3) !important;
}

.submit-button:disabled {
    background: #f5f5f5 !important;
    color: #bfbfbf !important;
    cursor: not-allowed !important;
    box-shadow: none !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .feedback-card {
        margin: 0 8px !important;
    }
    
    .contact-form {
        padding: 20px !important;
    }
    
    .feedback-title {
        font-size: 20px !important;
    }
    
    .message-text {
        font-size: 15px !important;
    }
    
    .form-title {
        font-size: 16px !important;
    }
    
    .form-actions {
        flex-direction: column !important;
    }
    
    .cancel-button,
    .submit-button {
        width: 100% !important;
    }
}

/* Animation for card entrance */
.feedback-card {
    animation: slideInUp 0.6s ease-out !important;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
} 
/* Resume Review Card Styles */
.resume-review-card {
  border-radius: 12px !important;
  border: none !important;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  overflow: hidden !important;
  position: relative !important;
  margin-bottom: 16px !important;
}

.resume-review-card:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12) !important;
}

.resume-review-card.pending {
  background: linear-gradient(135deg, #1890ff 0%, #096dd9 100%) !important;
}

/* Premium Resume Rewrite Pending Styles */
.resume-review-card.pending.resume-rewrite {
  background: linear-gradient(135deg, #0052cc 0%, #0747a6 100%) !important;
  border: 1px solid rgba(0, 82, 204, 0.3) !important;
  box-shadow: 0 8px 32px rgba(0, 82, 204, 0.2) !important;
  position: relative !important;
  overflow: hidden !important;
}

.resume-review-card.pending.resume-rewrite::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%) !important;
  animation: shimmer 3s infinite !important;
  pointer-events: none !important;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%) !important;
  }
  100% {
    transform: translateX(100%) !important;
  }
}

.resume-review-card.completed {
  background: linear-gradient(135deg, #faad14 0%, #d48806 100%) !important;
  border: 1px solid rgba(250, 173, 20, 0.2) !important;
  box-shadow: 0 4px 20px rgba(250, 173, 20, 0.15) !important;
}

.resume-review-card.request-widget {
  background: linear-gradient(135deg, #1890ff 0%, #096dd9 100%) !important;
  border: 1px solid rgba(24, 144, 255, 0.2) !important;
  box-shadow: 0 4px 20px rgba(24, 144, 255, 0.15) !important;
}

.resume-review-card.completed .resume-review-title {
  color: #ffffff !important;
}

.resume-review-card.completed .resume-review-description {
  color: rgba(255, 255, 255, 0.9) !important;
}

.resume-review-card.completed .status-text {
  color: #ffffff !important;
}

.resume-review-card.completed .status-dot.completed {
  background: #ffffff !important;
}

.resume-review-card.completed .resume-review-icon {
  background: rgba(255, 255, 255, 0.2) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

.resume-review-card.completed .review-notes-button {
  background: #ffffff !important;
  border: 1px solid #ffffff !important;
  color: #faad14 !important;
}

.resume-review-card.completed .review-notes-button:hover {
  background: #f0f0f0 !important;
  border-color: #f0f0f0 !important;
  color: #d48806 !important;
}

.request-review-button {
  background: #ffffff !important;
  border: 1px solid #ffffff !important;
  color: #1890ff !important;
  font-weight: 600 !important;
  height: 44px !important;
  border-radius: 8px !important;
  margin-top: 16px !important;
  transition: all 0.3s ease !important;
}

.request-review-button:hover {
  background: #f0f0f0 !important;
  border-color: #f0f0f0 !important;
  color: #389e0d !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

.resume-review-content {
  padding: 20px !important;
  color: white !important;
}

.resume-review-header {
  display: flex !important;
  align-items: flex-start !important;
  gap: 12px !important;
  margin-bottom: 16px !important;
}

.resume-review-icon {
  flex-shrink: 0 !important;
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.2) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 18px !important;
  -webkit-backdrop-filter: blur(10px) !important;
          backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

/* Premium Resume Rewrite Icon */
.resume-review-card.pending.resume-rewrite .resume-review-icon {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.1) 100%) !important;
  border: 2px solid rgba(255, 255, 255, 0.4) !important;
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.2) !important;
  font-size: 20px !important;
}

.resume-review-title-section {
  flex: 1 1 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
}

.resume-review-title {
  color: white !important;
  margin: 0 !important;
  font-weight: 700 !important;
  font-size: 18px !important;
  line-height: 1.3 !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2) !important;
  letter-spacing: -0.2px !important;
}

.resume-review-description-section {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
}

.resume-review-description {
  color: rgba(255, 255, 255, 0.9) !important;
  margin: 0 !important;
  line-height: 1.5 !important;
  font-size: 13px !important;
}

.status-indicator {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  padding: 6px 12px !important;
  border-radius: 20px !important;
  background: rgba(255, 255, 255, 0.2) !important;
  -webkit-backdrop-filter: blur(10px) !important;
          backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  width: -webkit-fit-content !important;
  width: fit-content !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
}

/* Premium Resume Rewrite Status Indicator */
.resume-review-card.pending.resume-rewrite .status-indicator {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.1) 100%) !important;
  border: 2px solid rgba(255, 255, 255, 0.4) !important;
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.2) !important;
  padding: 8px 16px !important;
}

.status-indicator.completed {
  background: rgba(76, 175, 80, 0.2) !important;
  border-color: rgba(76, 175, 80, 0.3) !important;
}

.status-dot {
  width: 6px !important;
  height: 6px !important;
  border-radius: 50% !important;
  background: #faad14 !important;
  animation: pulse 2s infinite !important;
}

.status-dot.completed {
  background: #52c41a !important;
  animation: none !important;
}

.status-text {
  color: white !important;
  font-weight: 600 !important;
  font-size: 12px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.8px !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) !important;
}

.review-notes-button {
  background: rgba(255, 255, 255, 0.2) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  color: white !important;
  border-radius: 8px !important;
  padding: 6px 12px !important;
  font-weight: 500 !important;
  font-size: 12px !important;
  -webkit-backdrop-filter: blur(10px) !important;
          backdrop-filter: blur(10px) !important;
  transition: all 0.3s ease !important;
  height: auto !important;
  line-height: 1.4 !important;
  width: -webkit-fit-content !important;
  width: fit-content !important;
}

.review-notes-button:hover {
  background: rgba(255, 255, 255, 0.3) !important;
  border-color: rgba(255, 255, 255, 0.5) !important;
  transform: translateY(-1px) !important;
  color: white !important;
}

/* ETA Section Styles */
.eta-section {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 12px !important;
  background: rgba(255, 255, 255, 0.1) !important;
  border-radius: 8px !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  -webkit-backdrop-filter: blur(10px) !important;
          backdrop-filter: blur(10px) !important;
  margin-top: 8px !important;
}

/* Premium Resume Rewrite ETA Section */
.resume-review-card.pending.resume-rewrite .eta-section {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.05) 100%) !important;
  border: 2px solid rgba(255, 255, 255, 0.3) !important;
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.1) !important;
  padding: 16px !important;
}

.eta-icon {
  flex-shrink: 0 !important;
  width: 24px !important;
  height: 24px !important;
  border-radius: 50% !important;
  background: rgba(250, 173, 20, 0.2) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 12px !important;
  color: #faad14 !important;
  border: 1px solid rgba(250, 173, 20, 0.3) !important;
}

/* Premium Resume Rewrite ETA Icon */
.resume-review-card.pending.resume-rewrite .eta-icon {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.3) 0%, rgba(255, 215, 0, 0.1) 100%) !important;
  border: 2px solid rgba(255, 215, 0, 0.4) !important;
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.2) !important;
  color: #ffd700 !important;
  font-size: 14px !important;
  width: 28px !important;
  height: 28px !important;
}

.eta-content {
  display: flex !important;
  flex-direction: column !important;
  gap: 2px !important;
}

.eta-label {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}

.eta-time {
  color: white !important;
  font-size: 13px !important;
  font-weight: 600 !important;
}

.eta-note {
  color: #faad14 !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  font-style: italic !important;
}

/* Premium Resume Rewrite ETA Note */
.resume-review-card.pending.resume-rewrite .eta-note {
  color: #ffd700 !important;
  font-weight: 600 !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) !important;
}

/* Compact Modal Styles */
.resume-review-modal .ant-modal-content {
  border-radius: 16px !important;
  overflow: hidden !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15) !important;
  border: none !important;
}

.modal-header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 20px 20px 0 20px !important;
  border-bottom: none !important;
  margin-bottom: 0 !important;
}

.modal-header .ant-modal-title {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  color: #1890ff !important;
  font-weight: 600 !important;
  font-size: 16px !important;
}

.modal-close-button {
  color: #8c8c8c !important;
  border: none !important;
  background: transparent !important;
  font-size: 16px !important;
  padding: 4px !important;
  border-radius: 50% !important;
  transition: all 0.3s ease !important;
}

.modal-close-button:hover {
  background: #f5f5f5 !important;
  color: #262626 !important;
}

.modal-content {
  padding: 0 !important;
}

/* Compact Review Section */
.review-section {
  padding: 20px 20px 0 20px !important;
  background: #ffffff !important;
}

.review-header {
  text-align: center !important;
  margin-bottom: 16px !important;
}

.review-header h4 {
  margin: 0 0 12px 0 !important;
  color: #262626 !important;
  font-weight: 600 !important;
  font-size: 18px !important;
}

.grade-text {
  color: #ff4d4f !important;
  font-weight: 700 !important;
  font-size: 24px !important;
}

.review-summary {
  color: #595959 !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
  margin: 0 !important;
}

/* Review Notes Section */
.review-notes-section {
  padding: 12px 24px 6px 24px !important;
  background: #ffffff !important;
}

.notes-content {
  background: #f8f9fa !important;
  padding: 12px !important;
  border-radius: 12px !important;
  border-left: 4px solid #1890ff !important;
  margin-bottom: 0 !important;
}

.notes-header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  margin-bottom: 8px !important;
}

.notes-title {
  margin: 0 !important;
  color: #262626 !important;
  font-weight: 600 !important;
  font-size: 16px !important;
}

.notes-grade {
  display: flex !important;
  align-items: center !important;
}

.grade-label {
  color: #8c8c8c !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.8px !important;
  margin: 0 !important;
  margin-right: 8px !important;
}

.grade-badge {
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, #ff4d4f 0%, #cf1322 100%) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 2px solid #fff !important;
  box-shadow: 0 2px 8px rgba(255, 77, 79, 0.3) !important;
}

.grade-text {
  color: white !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  margin: 0 !important;
}

.notes-toggle {
  display: flex !important;
  justify-content: center !important;
  margin-top: 8px !important;
}

.notes-toggle-button {
  color: #1890ff !important;
  font-weight: 500 !important;
  font-size: 14px !important;
  border: none !important;
  background: transparent !important;
  padding: 6px 12px !important;
  border-radius: 6px !important;
  transition: all 0.3s ease !important;
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
}

.notes-toggle-button:hover {
  background: rgba(24, 144, 255, 0.05) !important;
  color: #096dd9 !important;
}

.review-points {
  margin: 0 !important;
  color: #595959 !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
}

.review-point {
  margin-bottom: 4px !important;
  padding: 2px 0 !important;
}

.review-point:last-child {
  margin-bottom: 0 !important;
}

/* CTA Section */
.cta-section {
  padding: 24px 24px 20px 24px !important;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%) !important;
  border-radius: 12px !important;
}

.cta-header {
  text-align: center !important;
  margin-bottom: 14px !important;
}

.cta-icon {
  font-size: 28px !important;
  color: #1890ff !important;
  margin-bottom: 12px !important;
}

.cta-header h3 {
  color: #262626 !important;
  font-weight: 700 !important;
  font-size: 24px !important;
  margin: 0 0 8px 0 !important;
}

.cta-subtitle {
  color: #595959 !important;
  font-size: 15px !important;
  line-height: 1.4 !important;
  margin: 0 !important;
  max-width: 600px !important;
  margin: 0 auto !important;
}

/* Trust Reviews Section */
.trust-reviews {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  margin-top: 16px !important;
}

.stars {
  display: flex !important;
  align-items: center !important;
  gap: 2px !important;
}

.stars .anticon {
  color: #faad14 !important;
  font-size: 16px !important;
}

.review-text {
  color: #8c8c8c !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  margin: 0 !important;
}

/* Packages Section */
.packages-section {
  margin-bottom: 24px !important;
}

.packages-grid {
  margin: 0 !important;
  display: flex !important;
  justify-content: center !important;
}

.package-card {
  border-radius: 16px !important;
  border: 2px solid #f0f0f0 !important;
  transition: all 0.3s ease !important;
  cursor: pointer !important;
  position: relative !important;
  overflow: hidden !important;
  background: white !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05) !important;
  height: 100% !important;
}

.package-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
  border-color: #1890ff !important;
}

.package-card.popular {
  border-color: #faad14 !important;
  box-shadow: 0 8px 25px rgba(250, 173, 20, 0.15) !important;
}

.popular-badge {
  position: absolute !important;
  top: 10px !important;
  right: 10px !important;
  background: linear-gradient(135deg, #faad14 0%, #d48806 100%) !important;
  color: white !important;
  padding: 3px 10px !important;
  border-radius: 20px !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  display: flex !important;
  align-items: center !important;
  gap: 4px !important;
  z-index: 1 !important;
}

.package-header {
  text-align: center !important;
  padding: 20px 20px 16px 20px !important;
}

.package-icon {
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, #1890ff 0%, #096dd9 100%) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 auto 12px auto !important;
  font-size: 18px !important;
  color: white !important;
}

.package-name {
  color: #262626 !important;
  font-weight: 700 !important;
  font-size: 18px !important;
  margin: 0 0 6px 0 !important;
}

.package-description {
  color: #8c8c8c !important;
  font-size: 13px !important;
  line-height: 1.4 !important;
  margin: 0 !important;
}

.package-pricing {
  text-align: center !important;
  padding: 0 20px 16px 20px !important;
  border-bottom: 1px solid #f0f0f0 !important;
}

.price-container {
  display: flex !important;
  align-items: baseline !important;
  justify-content: center !important;
  gap: 4px !important;
  margin-bottom: 3px !important;
}

.price-currency {
  color: #1890ff !important;
  font-size: 18px !important;
  font-weight: 600 !important;
}

.price-amount {
  color: #1890ff !important;
  font-size: 32px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
}

.price-original {
  color: #bfbfbf !important;
  font-size: 14px !important;
  text-decoration: line-through !important;
  font-weight: 500 !important;
}

.price-savings {
  color: #52c41a !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}

.package-features {
  padding: 16px !important;
}

.feature-item {
  display: flex !important;
  align-items: flex-start !important;
  gap: 8px !important;
  margin-bottom: 8px !important;
}

.feature-item:last-child {
  margin-bottom: 0 !important;
}

.feature-icon {
  color: #52c41a !important;
  font-size: 13px !important;
  margin-top: 2px !important;
  flex-shrink: 0 !important;
}

.feature-text {
  color: #595959 !important;
  font-size: 13px !important;
  line-height: 1.3 !important;
  margin: 0 !important;
}

.package-button {
  margin: 0 20px 16px 20px !important;
  height: 40px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  transition: all 0.3s ease !important;
  width: calc(100% - 40px) !important;
  display: block !important;
  text-align: center !important;
}

/* Trust Indicators */
.trust-indicators {
  display: flex !important;
  justify-content: center !important;
  gap: 20px !important;
  padding-top: 16px !important;
  border-top: 1px solid #f0f0f0 !important;
  margin-bottom: 12px !important;
}

.trust-item {
  display: flex !important;
  align-items: center !important;
  gap: 5px !important;
  color: #8c8c8c !important;
  font-size: 11px !important;
  font-weight: 500 !important;
}

.trust-item .anticon {
  color: #52c41a !important;
  font-size: 13px !important;
}

.learn-more-button {
  color: #1890ff !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  border: 1px solid #1890ff !important;
  background: transparent !important;
  padding: 8px 20px !important;
  border-radius: 8px !important;
  transition: all 0.3s ease !important;
  display: block !important;
  margin: 0 auto !important;
  text-decoration: none !important;
  line-height: 1.5 !important;
  height: auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.learn-more-button:hover {
  background: #1890ff !important;
  color: white !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(24, 144, 255, 0.3) !important;
}

.cancel-button {
  color: #8c8c8c !important;
  font-size: 13px !important;
  border: none !important;
  background: transparent !important;
  padding: 6px 12px !important;
  border-radius: 6px !important;
  transition: all 0.3s ease !important;
  display: block !important;
  margin: 0 auto !important;
}

.cancel-button:hover {
  background: #f5f5f5 !important;
  color: #595959 !important;
}

/* Animations */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 215, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .resume-review-modal .ant-modal {
    margin: 16px !important;
    width: calc(100% - 32px) !important;
  }

  .modal-header {
    padding: 16px 16px 0 16px !important;
  }

  .review-section {
    padding: 16px 16px 0 16px !important;
  }

  .cta-section {
    padding: 16px 16px 12px 16px !important;
  }

  .cta-header h3 {
    font-size: 18px !important;
  }

  .cta-subtitle {
    font-size: 13px !important;
  }

  .packages-grid {
    margin: 0 -6px !important;
  }

  .package-card {
    margin-bottom: 12px !important;
  }

  .trust-indicators {
    flex-direction: column !important;
    gap: 8px !important;
    align-items: center !important;
  }

  .review-header h4 {
    font-size: 16px !important;
  }

  .grade-text {
    font-size: 20px !important;
  }
}

@media (max-width: 480px) {
  .package-header {
    padding: 12px 8px 8px 8px !important;
  }

  .package-pricing {
    padding: 0 8px 8px 8px !important;
  }

  .package-features {
    padding: 8px !important;
  }

  .package-button {
    margin: 0 8px 8px 8px !important;
    width: calc(100% - 16px) !important;
    text-align: center !important;
    display: block !important;
  }
}

/* Delivery Info Styles */
.delivery-info {
  display: flex !important;
  align-items: center !important;
  background: linear-gradient(135deg, #f6ffed 0%, #d9f7be 100%) !important;
  border: 1px solid #b7eb8f !important;
  border-radius: 8px !important;
  padding: 12px 16px !important;
  margin-top: 16px !important;
  box-shadow: 0 2px 8px rgba(82, 196, 26, 0.1) !important;
}

.delivery-icon {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 32px !important;
  height: 32px !important;
  background: linear-gradient(135deg, #52c41a 0%, #389e0d 100%) !important;
  border-radius: 50% !important;
  margin-right: 12px !important;
  color: white !important;
  font-size: 16px !important;
}

.delivery-content {
  flex: 1 1 !important;
}

.delivery-label {
  display: block !important;
  font-weight: 600 !important;
  color: #389e0d !important;
  font-size: 14px !important;
  line-height: 1.4 !important;
}

 .delivery-note {
   display: block !important;
   color: #666 !important;
   font-size: 12px !important;
   line-height: 1.4 !important;
   margin-top: 2px !important;
 }

 /* Trust Indicators Section */
.trust-indicators-section {
  margin-top: 12px !important;
  padding: 12px !important;
  background: linear-gradient(135deg, #f0f8ff 0%, #e6f7ff 100%) !important;
  border-radius: 8px !important;
  border: 1px solid #d6e4ff !important;
  text-align: center !important;
}

.trust-indicators-content {
  max-width: 350px !important;
  margin: 0 auto !important;
}

.trust-indicators-title {
  color: #1890ff !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  margin: 0 0 4px 0 !important;
}

.trust-indicators-description {
  color: #595959 !important;
  font-size: 12px !important;
  line-height: 1.3 !important;
  margin: 0 0 8px 0 !important;
}

.discovery-call-button {
  background: linear-gradient(135deg, #1890ff 0%, #096dd9 100%) !important;
  border: none !important;
  border-radius: 6px !important;
  font-weight: 600 !important;
  font-size: 12px !important;
  height: 32px !important;
  padding: 0 16px !important;
  box-shadow: 0 2px 8px rgba(24, 144, 255, 0.3) !important;
  transition: all 0.3s ease !important;
}

 .discovery-call-button:hover {
   transform: translateY(-2px) !important;
   box-shadow: 0 6px 20px rgba(24, 144, 255, 0.4) !important;
   background: linear-gradient(135deg, #096dd9 0%, #0050b3 100%) !important;
 } 
.posting-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    padding: 0px;
    height: 100%;
    width: 100%;
    min-width: 300px;
    min-height: 250px;
    position: relative;
}

.item-label {
    position: absolute;
    top: 0;
    left: 0;
    padding-left: 5px;
    padding-right: 5px;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    border-bottom-right-radius: 8px;
}

.logo-container {
    display: flex;
    align-items: center;
    /* Center vertically */
    justify-content: center;
    /* Center horizontally */
    margin-bottom: 4px;
    /* Adjust the margin as needed */
}

.logo-image {
    width: 100px;
    /* Set the width of the square */
    height: 100px;
    /* Set the height of the square */
    object-fit: contain;
}

.text-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center horizontally */
    text-align: center;
    /* Center text content */
}

.company-name {
    font-weight: bold;
    /* Make the company name bold, adjust as needed */
    margin-bottom: 2px;
    /* Adjust the margin as needed */
}

h4 {
    margin: 0;
    /* Remove any default margins */
}

.location {
    margin-top: 0px;
    /* Adjust the margin as needed */
}

.action-container {
    height: 40px;
    /* Adjust the height as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: -10px;
    /* Adjust the margin as needed */
}

.divider {
    border-top: 1px solid #ccc;
    /* Add a 1px solid line with gray color */
    width: 90%;
    /* Adjust the width of the line as needed */
    margin: 8px auto;
    /* Center the line horizontally and add vertical spacing */
}

/* Media Queries for Mobile Responsiveness */
@media (max-width: 768px) {
    .posting-card {
        padding: 8px;
        min-width: 100%;
        min-height: auto;
    }

    .logo-container {
        margin-bottom: 8px;
    }

    .text-container {
        text-align: left;
        align-items: flex-start;
    }

    .company-name {
        font-size: 16px;
    }

    .contact-info span {
        font-size: 12px;
    }

    .contact-info a {
        margin-right: 5px;
    }

    .divider {
        margin: 16px 0;
    }

    .action-container {
        text-align: center;
    }
}
.mainEmailComposerContainer {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (max-width: 768px) {
    .mainEmailComposerContainer {
        margin-top: 0px;
    }
    
}
.site-layout-content {
    max-width: 600px;
    margin: 0 auto;   
}

.signup-form {
    width: 100%;
}

.signup-input {
    width: 100%;
}

.signup-button {
    width: 100%;
}
.truncate-text {
    /* white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; */
}

@media (max-width: 768px) {
    .contact-info .truncate-text {
        max-width: 150px; /* Adjust the width as needed */
    }
}
/* Custom styling for the location search box */
.locationSearch {
  position: relative;
  display: inline-block;
  width: 100%;
}

/* Style the input container */
.locationSearch .react-autosuggest__container {
  position: relative;
}

/* Style the input field */
.locationSearch .react-autosuggest__input {
  width: 100%;
  padding: 8px 12px;
  /* Adjust padding as needed */
  border: 1px solid #d9d9d9;
  /* Match Ant Design's input border color */
  border-radius: 8px;
  /* Match Ant Design's input border radius */
  font-size: 14px;
  /* Match Ant Design's font size */
  transition: border-color 0.3s, box-shadow 0.3s;
}

/* Style the input field when it's focused */
.locationSearch .react-autosuggest__input:focus {
  outline: none;
  border-color: #40a9ff;
  /* Match Ant Design's input focus border color */
  box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
  /* Match Ant Design's input focus box shadow */
}

/* Style the suggestions container */
.locationSearch .react-autosuggest__suggestions-container {
  position: absolute;
  top: 100%;
  width: 100%;
  max-height: 200px;
  /* Adjust the maximum height as needed */
  overflow-y: auto;
  z-index: 999;
  background-color: #fff;
  /* Match Ant Design's input background color */
  border-radius: 2px;
  /* Match Ant Design's input border radius */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  /* Match Ant Design's input suggestions box shadow */
}

/* Style individual suggestion items */
.locationSearch .react-autosuggest__suggestion {
  padding: 8px 12px;
  /* Adjust padding as needed */
  cursor: pointer;
}

/* Style selected suggestion item */
.locationSearch .react-autosuggest__suggestion--highlighted {
  background-color: #e6f7ff;
  /* Match Ant Design's input suggestions highlight color */
}

/* This will target the ul containing the suggestions */
.locationSearch .react-autosuggest__suggestions-list {
  list-style-type: none;
  /* Removes bullet points */
  padding-left: 0;
  /* Removes any default padding */
}

/* This will target individual suggestion items */
.locationSearch .react-autosuggest__suggestion {
  padding: 10px;
  /* Adds some padding for each suggestion for better UX */
  cursor: pointer;
  /* Changes the cursor to pointer when hovering over a suggestion */
}

/* This will target the suggestion when it's highlighted/active */
.locationSearch .react-autosuggest__suggestion--highlighted {
  background-color: #ddd;
  /* Adds a light gray background for the active suggestion */
}
/* Add these styles to your CSS */

/* Style for the container holding the search elements */
.search-box {
    display: flex; /* Use flexbox to align items horizontally */
    gap: 2px; /* Add some spacing between the elements */
    align-items: center; /* Vertically center items within the container */
    margin-bottom: 28px; /* Add some spacing below the container */
  }
  
  /* Style for the input fields */
  .input-field {
    flex: 1 1; /* Allow input fields to grow and take available space */
  }
  
  /* Style for the button */
  .search-button {
    min-width: 80px; /* Adjust the width as needed */
  }
  

.title-section {
    text-align: center;
    padding-top: 40px;
    padding-bottom: 10px;
    /* Add spacing above and below the title section */
    color: Black;
    /* Text color for the title and blurb */

}

.title-content {
    text-align: center;
}

.title {
    font-size: 36px;
    margin: 16px 0;
}

.blurb {
    font-size: 18px;
    margin: 16px 0;
}
.opportunity-card {
    position: relative;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    padding: 16px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s, box-shadow 0.3s;
  }
  
  .opportunity-card:hover {
    background-color: #f0f0f0;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }
  
  .image-container {
    margin-right: 10px;
  }
  
  .opportunity-image {
    width: 50px; /* Adjust the size as needed */
    height: 50px; /* Adjust the size as needed */
    object-fit: cover;
    border-radius: 8px; /* Optional: Add border radius for rounded corners */
  }

  .opportunity-title {
    margin-top: 0px; /* Add space above the text */
    margin-bottom: 20px;
    font-size: 1.2em; /* Make the text larger */
    font-weight: bold; /* Make the text bold */
  }

  .page-fold {
    position: absolute;
    top: 0;
    right: 0;
    width: 30px; /* Adjust the size as needed */
    height: 30px; /* Adjust the size as needed */
    background-color: #f0f0f0; /* Adjust the color as needed */
    -webkit-clip-path: polygon(100% 0, 0 0, 100% 100%);
            clip-path: polygon(100% 0, 0 0, 100% 100%);
    transition: background-color 0.3s;
  }
  
  .opportunity-card:hover .page-fold {
    background-color: #e0e0e0; /* Adjust the hover color as needed */
  }
.sider {
    color: #fff;
    margin-right: 10px;
    position: fixed;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }


.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: auto;
    margin-left: 610px;
    background: #fff;
    color: #020b16;
  }

  
  @media (max-width: 768px) {

    .sider {
        width: 100%;
        position: relative;
        margin-right: 0;
        flex: 0 1;
      }
    .content {
      display: none;
    }

  }
/* Add this CSS to your stylesheets */

.Hiremize-Title {
  margin-top: 15px;
  margin-bottom: 10px;
  margin-left: 20px;
  font-size: 28px;
  color: #fff;
}

.nav-items {
  margin-left: auto;
}

.nav-items a {
  margin-right: 5px;
}

img {
  height: 60px;
  width: auto;
  margin-right: 10px;
}

li {
  list-style-type: none;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}

.button-pulse {
  animation: pulse 5s infinite;
}
/* ApplicationItem.css - Modern Design */
.app-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  width: 100%;
  position: relative;
  box-sizing: border-box;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.app-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0B5FFF 0%, #2ca4cc 100%);
  border-radius: 20px 20px 0 0;
}

.app-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.favorite-icon {
  font-size: 28px;
  margin-right: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
  position: relative;
}

.favorite-icon:hover {
  transform: scale(1.1);
}

.status-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 140px;
  padding-right: 16px;
}

.status-text {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  padding: 6px 16px;
  border-radius: 20px;
  background: linear-gradient(135deg, #0B5FFF 0%, #2ca4cc 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(11, 95, 255, 0.3);
}

.status-text.status-offered {
  background: linear-gradient(135deg, #fcdc5c 0%, #f6ad55 100%);
  color: #2d3748;
  box-shadow: 0 4px 15px rgba(252, 220, 92, 0.4);
}

.status-buttons {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 8px;
}

.post-date {
  font-size: 12px;
  color: #666;
  font-weight: 500;
  text-align: center;
  background: rgba(255, 255, 255, 0.7);
  padding: 4px 12px;
  border-radius: 12px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.company-logo-section {
  min-width: 80px;
  margin-right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.company-logo {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.company-logo:hover {
  transform: scale(1.05);
}

.company-details-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-grow: 1;
  gap: 4px;
}

.company-name {
  font-size: 16px;
  font-weight: 600;
  color: #2d3748;
  margin: 0;
  line-height: 1.4;
}

.position {
  font-size: 18px;
  font-weight: 700;
  color: #1a202c;
  margin: 0;
  line-height: 1.3;
  text-decoration: none;
  transition: color 0.3s ease;
}

.position:hover {
  color: #0B5FFF;
}

.location {
  font-size: 14px;
  color: #718096;
  margin: 0;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
}

.location::before {
  content: '📍';
  font-size: 12px;
}

.actions-section {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  min-width: 200px;
}

.actions-buttons {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}

.action-button-row {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.6);
  padding: 6px 10px;
  border-radius: 10px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.action-button-row:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: translateX(4px);
}

.action-row-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #0B5FFF 0%, #2ca4cc 100%);
  color: white;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(11, 95, 255, 0.3);
}

/* Ant Design Button Overrides */
.actions-section .ant-btn {
  border-radius: 10px;
  border: 2px solid #1a8fd4;
  background: transparent;
  color: #1a8fd4;
  font-weight: 600;
  height: 32px;
  padding: 0 14px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(26, 143, 212, 0.1);
}

.actions-section .ant-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(26, 143, 212, 0.2);
  background: rgba(26, 143, 212, 0.05);
  border-color: #0B5FFF;
}

.actions-section .ant-btn[style*="background: #fcdc5c"] {
  background: linear-gradient(135deg, #fcdc5c 0%, #f6ad55 100%) !important;
  color: #2d3748;
  border: 2px solid #fcdc5c;
  box-shadow: 0 4px 15px rgba(252, 220, 92, 0.4);
}

.actions-section .ant-btn[style*="background: #fcdc5c"]:hover {
  background: linear-gradient(135deg, #f6ad55 0%, #ed8936 100%) !important;
  transform: translateY(-2px);
  border-color: #f6ad55;
}

/* Status Dropdown Styling */
.status-section .ant-dropdown-trigger {
  border-radius: 10px;
  border: 1px solid rgba(11, 95, 255, 0.3);
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  font-weight: 600;
  transition: all 0.3s ease;
}

.status-section .ant-dropdown-trigger:hover {
  border-color: #0B5FFF;
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
  .app-card {
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    gap: 16px;
  }

  .app-card::before {
    height: 2px;
  }

  .favorite-icon {
    position: absolute;
    top: 16px;
    right: 16px;
    margin-right: 0;
    font-size: 24px;
  }

  .status-section {
    min-width: auto;
    padding-right: 0;
    order: 1;
  }

  .status-text {
    font-size: 12px;
    padding: 4px 12px;
  }

  .company-logo-section {
    min-width: auto;
    margin-right: 0;
    order: 2;
    align-self: center;
  }

  .company-logo {
    width: 50px;
    height: 50px;
  }

  .company-details-section {
    order: 3;
    text-align: center;
    align-items: center;
  }

  .company-name {
    font-size: 14px;
  }

  .position {
    font-size: 16px;
  }

  .location {
    font-size: 12px;
  }

  .actions-section {
    order: 4;
    min-width: auto;
    width: 100%;
    align-items: stretch;
  }

  .actions-buttons {
    width: 100%;
  }

  .action-button-row {
    justify-content: space-between;
    padding: 12px 16px;
  }

  .action-button-row .ant-btn {
    flex: 1 1;
    margin-left: 8px;
  }

  .post-date {
    font-size: 11px;
    padding: 3px 10px;
  }
}

@media (max-width: 480px) {
  .app-card {
    padding: 16px;
    margin-bottom: 12px;
  }

  .status-text {
    font-size: 11px;
    padding: 3px 10px;
  }

  .company-logo {
    width: 45px;
    height: 45px;
  }

  .company-name {
    font-size: 13px;
  }

  .position {
    font-size: 15px;
  }

  .location {
    font-size: 11px;
  }

  .action-button-row {
    padding: 10px 12px;
  }

  .action-button-row .ant-btn {
    font-size: 12px;
    height: 32px;
    padding: 0 12px;
  }

  .action-row-number {
    width: 20px;
    height: 20px;
    font-size: 10px;
  }
}

/* Animation for checklist toggle */
.actions-buttons {
  animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Glassmorphism effect for modals and overlays */
.ant-dropdown-menu {
  background: rgba(255, 255, 255, 0.95) !important;
  -webkit-backdrop-filter: blur(20px) !important;
          backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 12px !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1) !important;
}

.ant-dropdown-menu-item {
  border-radius: 8px !important;
  margin: 4px 8px !important;
  transition: all 0.3s ease !important;
}

.ant-dropdown-menu-item:hover {
  background: rgba(11, 95, 255, 0.1) !important;
  transform: translateX(4px) !important;
}

/* Loading states and transitions */
.app-card.loading {
  opacity: 0.7;
  pointer-events: none;
}

.app-card.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid #0B5FFF;
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Offer Accepted Aesthetic Effects */
.app-card.offer-accepted {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(252, 220, 92, 0.1) 100%);
  border: 2px solid #fcdc5c;
  box-shadow: 0 12px 40px rgba(252, 220, 92, 0.3);
  animation: offerAcceptedPulse 3s ease-in-out infinite;
}

.app-card.offer-accepted::before {
  background: linear-gradient(90deg, #fcdc5c 0%, #f6ad55 100%);
  height: 4px;
}

.app-card.offer-accepted::after {
  content: '🎉';
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 20px;
  animation: celebrationBounce 2s ease-in-out infinite;
  z-index: 10;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.app-card.offer-accepted .favorite-icon {
  animation: starTwinkle 1.5s ease-in-out infinite;
}

.app-card.offer-accepted .company-logo {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(252, 220, 92, 0.4);
}

.app-card.offer-accepted .position {
  color: #d69e2e;
  font-weight: 800;
}

.app-card.offer-accepted .company-name {
  color: #b7791f;
  font-weight: 700;
}

@keyframes offerAcceptedPulse {
  0%, 100% { 
    transform: translateY(0);
    box-shadow: 0 12px 40px rgba(252, 220, 92, 0.3);
  }
  50% { 
    transform: translateY(-2px);
    box-shadow: 0 16px 50px rgba(252, 220, 92, 0.5);
  }
}

@keyframes celebrationBounce {
  0%, 100% { 
    transform: scale(1) rotate(0deg);
  }
  25% { 
    transform: scale(1.2) rotate(-10deg);
  }
  50% { 
    transform: scale(1.1) rotate(10deg);
  }
  75% { 
    transform: scale(1.3) rotate(-5deg);
  }
}

@keyframes starTwinkle {
  0%, 100% { 
    transform: scale(1);
    filter: brightness(1);
  }
  50% { 
    transform: scale(1.1);
    filter: brightness(1.3);
  }
}

/* Checkbox styling for offer acceptance */
.action-button-row .ant-checkbox-wrapper {
  margin-left: 8px;
}

.action-button-row .ant-checkbox-checked .ant-checkbox-inner {
  background-color: #fcdc5c;
  border-color: #fcdc5c;
}

.action-button-row .ant-checkbox-checked .ant-checkbox-inner::after {
  border-color: #2d3748;
}

.action-button-row .ant-checkbox:hover .ant-checkbox-inner {
  border-color: #fcdc5c;
}
  

.applist-title-section {
  margin-top: 2.5%;
}


/* Add this CSS to style the filter and sort buttons */
.filter-sort-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 12px;
    margin-bottom: 8px;
    gap: 8px; /* Adjust the gap between buttons as needed */
  }
  
  /* Style the filter and sort buttons */
  .filter-sort-section span {
    font-weight: bold;
    margin-right: 0px; /* Add space to the right of the 'Filter' and 'Sort' text */
  }
  
  .filter-sort-section Button {
    background-color: #f0f0f0; /* Button background color */
    color: #333; /* Button text color */
    border: none; /* Remove button border */
    border-radius: 4px; /* Add rounded corners to buttons */
    padding: 4px 12px; /* Adjust padding as needed */
    cursor: pointer; /* Add pointer cursor on hover */
  }
  
  /* Hover effect for buttons */
  .filter-sort-section Button:hover {
    background-color: #ddd; /* Change background color on hover */
    color: #555; /* Change text color on hover */
  }

  .filter-sort-section .active {
    color: #4096ff; /* Change text color on hover */
  }




  .filter-sort-drawer-section {
    display: flex;
    flex-direction: column;
    margin-top: 12px;
    margin-bottom: 8px;
    gap: 8px; /* Adjust the gap between buttons as needed */
  }

  /* Hover effect for buttons */
  .filter-sort-drawer-section Button:hover {
    background-color: #ddd; /* Change background color on hover */
    color: #555; /* Change text color on hover */
  }

  .filter-sort-drawer-section .active {
    color: #4096ff; /* Change text color on hover */
  }
/* Example CSS for the modal */
/* AddApplicationModal.css */

.ant-modal-content {
  margin-left: 0%;
}

.custom-modal {
  justify-content: center;
  align-items: center;
}

.center-form {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 50%;
  
}

/* Adjust input and label styles for better alignment */
.ant-form-item-label {
  text-align: center;
  width: 100%;
}

.ant-form-item-control-input {
  text-align: center;
}

/* Applications.css */

.applications-container {
  width: 75%; /* Adjust the width as needed */
  max-width: 1200px; /* Adjust the max-width as needed */
  margin-left: auto; /* Center horizontally */
  margin-right: auto; /* Center horizontally */
}

.button-container {
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
  }
  
  /* Style for the "Add Application" button */
  .add-application-button {
    font-size: 18px; /* Adjust the font size as needed */
    padding: 12px 24px; /* Adjust the padding as needed */
    border-radius: 8px; /* Add rounded corners */
    border: none; /* Remove the button border */
    text-align: center; /* Center the text horizontally */
    cursor: pointer; /* Add pointer cursor on hover */
    line-height: 0.5; /* Adjust the line-height to center text vertically */
  }
  
  .add-application-button:hover {
    background-color: #40a9ff; /* Change the hover background color as desired */
  }
.meeting {
    list-style-type: none;
    font-size: 12px;
    margin-left: -30px;
    margin-right: 10px;
    background-color: #1677ff;
    border: 1px solid #1677ff;
    color: white;
    padding-left: 3px;
    padding-right: 3px;
    border-radius: 5px;
}
.header-container {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}

.contact-name {
    margin-bottom: 0;
}

.forward-button {
    margin-right: 20px;
}

@media (max-width: 600px) {
    .header-container {
        flex-direction: column;
        align-items: center;
    }

    .forward-button {
        margin-right: 0;
        margin-top: 10px;
    }
}
/* Contacts.css */

.main-contacts-container {
  width: 85%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}


.button-container {
  display: flex;
  justify-content: center;
  /* Center horizontally */
  align-items: center;
  /* Center vertically */
}

/* Style for the "Add Application" button */
.add-contact-or-company-button {

  background-color: #1890ff;
  /* Change the background color as desired */

}

.add-contact-button:hover {
  background-color: #40a9ff;
  /* Change the hover background color as desired */
}

.contacts-toggle-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px;
}

.contact-title {
  font-size: 24px;
  font-weight: bold;
  margin: 10px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
  text-align: center;
}


@media screen and (max-width: 768px) {

  .main-contacts-container {
    width: 97.5%;
  }

  .contact-title {
    font-size: 16px;
    margin: 5px;
  }

  .contacts-toggle-container {
    margin: 5px;
  }

  .add-contact-or-company-button {
    font-size: 14px;
    margin-bottom: 5px !important;
  }

}
.custom-modal .ant-modal-content {
  border-radius: 8px;
}

.custom-modal .ant-modal-header {
  text-align: center; /* Center align the header title */
  border-bottom: none;
}

.custom-modal .ant-modal-body {
  display: flex; /* Use flexbox to center contents */
  flex-direction: column; /* Stack children vertically */
  align-items: center; /* Center children horizontally */
}

.custom-modal .ant-modal-footer {
  border-top: none;
  display: flex;
  justify-content: center; /* Center footer buttons */
}

.custom-form .form-item {
  margin-bottom: 16px;
  width: 100%; /* Full width to align with other inputs */
}

.custom-form .autocomplete-wrapper {
  display: flex;
  align-items: center;
  justify-content: center; /* Center the autocomplete and button */
}

.custom-form .check-icon {
  margin-left: 10px;
  color: green;
}

.custom-form .quick-add-button {
  margin-left: 10px;
}

/* Responsive adjustments */
@media (max-width: 576px) {
  .custom-modal .ant-modal-body {
    padding: 24px;
  }
}


.optimizeResumeMainContainer {
  margin-top: 20px;
  margin-bottom: 20px;
  margin-left: 10px;
  margin-right: 10px;
}
.target-job-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
    flex: 1 1;
}

.target-job-content {
    display: flex;
    flex-direction: row;
    margin-top: 10px;
}

.job-details {
    padding: 20px;
    flex: 3 1;
}

.job-actions {
    padding: 20px;
    flex: 2 1;
    max-width: 40vw;
}

.vertical-divider {
    height: auto;
}

.parentJobFieldInput {
    width: 350px;
}

.jobFieldInput {
    width: 350px;
}

.jobTags {
    padding: 5px 15px;
    font-size: 14px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.more-icon {
    display: inline-block;
    text-align: center;
    font-size: 12px;
    color: black;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.more-icon:hover {
    background-color: #f0f0f0;
    color: #0d7bc1;
}

.more-icon-text {
    font-weight: bold;
}

@media screen and (max-width: 768px) {

    .target-job-container {
        max-height: 75vh;
        /* Set the maximum height */
        overflow-y: auto;
        /* Make it scrollable when content exceeds the max height */
    }

    .target-job-content {
        flex-direction: column;
        margin-top: 5px;
    }

    .job-details {
        width: 100%;
        padding: 0;
    }

    .job-actions {
        display: flex;
        justify-content: center;
        max-width: 75vw;
        padding: 0;
    }

    .vertical-divider {
        display: none;
    }

    .parentJobFieldInput,
    .jobFieldInput {
        max-width: 75vw;
    }

    .job-details {
        margin-bottom: 20px;
    }

    .jobTags {
        padding: 2.5px 5px;
        font-size: 12px;
    }
}

.optimizeCoverLetterMainContainer {
  margin-top: 20px;
  margin-bottom: 20px;
  margin-left: 10px;
  margin-right: 10px;
}
.editResumeMainContainer {
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: 10px;
    margin-right: 10px;
  }
.editResumeMainContainer {
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: 10px;
    margin-right: 10px;
  }
.upload-resume-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
    flex: 1 1;
}

.resume-review-optin {
    margin: 20px 0;
    padding: 16px 20px;
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f7ff 100%);
    border-radius: 12px;
    border: 1px solid rgba(24, 144, 255, 0.15);
    box-shadow: 0 2px 8px rgba(24, 144, 255, 0.08);
    text-align: center;
}

.resume-review-checkbox {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
}

.resume-review-checkbox .ant-checkbox-wrapper {
    width: auto !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    justify-content: center !important;
}

.resume-review-checkbox .ant-checkbox {
    margin-top: 2px !important;
    flex-shrink: 0 !important;
}

.resume-review-checkbox .ant-checkbox-checked .ant-checkbox-inner {
    background-color: #1890ff !important;
    border-color: #1890ff !important;
}

.resume-review-checkbox .ant-checkbox-disabled .ant-checkbox-inner {
    background-color: #1890ff !important;
    border-color: #1890ff !important;
}

.resume-review-text {
    font-size: 15px !important;
    line-height: 1.5 !important;
    color: #262626 !important;
    font-weight: 400 !important;
}

.resume-review-text strong {
    color: #1890ff !important;
    font-weight: 600 !important;
}

.mission-statement {
    margin-top: 20px;
    font-size: 24px;
}

.get-started {
    margin-top: 20px;
}

.upload-resume-content {
    display: flex;
    flex-direction: row;
    margin-top: 30px;
}

.dragger-container {
    width: 50%;
    padding-right: 15px;
    border-right: 1px solid gainsboro;
    text-align: center;
}

.manual-button-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1 1;
    width: 50%;
    padding-left: 15px;
    text-align: center;
}

.modal-center {
    position: fixed;
    top: 50%;
    left: 50%;
}

@media screen and (max-width: 768px) {
    .upload-resume-content {
        flex-direction: column;
    }

    .mission-statement {
        font-size: 14px;
    }

    .dragger-container, .manual-button-container {
        width: 100%;
        padding: 0;
        border: none;
    }

    .dragger-container {
        margin-bottom: 20px;
    }

    .dragger-text {
        font-size: 16px;
    }

    .dragger-instruction {
        display: none;
    }
}


.mainWelcomeStep {
    margin: 12.5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.logo-welcome {
    height: 200px;
    width: auto;
    margin-bottom: 20px;
}

.welcome {
    margin-bottom: 0px;
}

@media screen and (max-width: 768px) {
    .mainWelcomeStep {
        margin: 0 !important;
    }
    .logo-welcome {
        height: 100px;
        width: auto;
        margin-bottom: 20px;
    }
    .welcome {
        font-size: 2.0rem;
        margin-bottom: 15px;
    }
    
}

.interviewPrepMainContainer {
  height: 80vh;
  margin-top: 20px;
  margin-bottom: 2px;
  margin-left: 10px;
  margin-right: 10px;
}
.selected-row {
    background-color: rgb(241, 241, 241) !important;
}

.selected-row:hover {
    background-color: rgb(241, 241, 241) !important;
}
/* Add this CSS to your stylesheet */

.full-match-card {
    border: 1px solid #d9d9d9;
    border-radius: 6px;
    padding: 50px;
}

.connectWithText {
    text-align: center;
    font-size: 1.5em;
    color: #333;
    margin: 10px 0;
}

.keyword-scroller {
    display: flex;
    overflow-x: auto;
    padding: 10px 0;
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none; /* For Internet Explorer and Edge */
}

.not-interested {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #d3d3d3;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 2px 5px; /* Reduced padding */
    font-size: 12px; /* Smaller font size */
    cursor: pointer;
}

.keyword-scroller-card {
    padding-bottom: 0px !important;
    
}
/* Hide scrollbar for WebKit-based browsers (Chrome, Safari) */
.keyword-scroller::-webkit-scrollbar {
    display: none;
}

.view-more-button {
    display: block;
    margin: 0 auto;
    padding: 0px 5px;
    font-size: 14px;
    background-color: rgb(44, 164, 204);
    color: white;
    cursor: pointer;
    text-align: center;
}

.view-more-button:hover {
    background-color: #40a9ff;
}

@media (max-width: 768px) {
    .full-match-card {
        padding: 16px;
    }

    .keyword-scroller {
        padding: 1px ;
        margin: 0px;
    }

    .not-interested {
        top: 2.5px;
        right: 2.5px;
        padding: 1px 3px;
        font-size: 10px;
        margin: 5px;
        z-index: 1;
    }

    .match-card-row {
        flex-direction: column;
    }

    .match-card-col {
        width: 100%;
        margin-bottom: 16px;
    }

    /* .company-description-card {
        display: none;
    } */

    .connectWithText {
        display: none;
    }

    .matchCardDivider {
        display: none;
    }

    .email-compose {
        margin-top: 16px;
    }
}





/* Job Posting Card Specific */


.button-container {
    display: flex;
    justify-content: center;
    gap: 10px; /* Optional: Add some space between the buttons */
    margin-top: 10px; /* Optional: Add some space above the buttons */
    margin-bottom: 10px; /* Optional: Add some space below the buttons */
}
.main-container {
    width: 90%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.title-section {
    display: flex;
    justify-content: space-between;
}

.title {
    margin: 0;
}

.count {
    margin: 0
}

.discover-text {
    text-align: center;
    font-size: 2em;
    margin-bottom: 20px
}

@media (max-width: 768px) {
    .main-container {
        width: 95%;
    }

    .title-section {
        margin: 5px;
        padding: 0;
    }

    .title {
        font-size: 0.8rem;
    }

    .count {
        font-size: 0.8rem;
    }

    .discover-text {
        margin: 10px;
        margin-bottom: 30px;
    }
}
/* Add this CSS to your stylesheet */

.keyword-scroller {
    display: flex;
    overflow-x: auto;
    padding: 10px 0;
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none; /* For Internet Explorer and Edge */
}


.keyword-scroller-card {
    padding-bottom: 0px !important;
    
}
/* Hide scrollbar for WebKit-based browsers (Chrome, Safari) */
.keyword-scroller::-webkit-scrollbar {
    display: none;
}


@media (max-width: 768px) {

    .keyword-scroller {
        padding: 1px ;
        margin: 0px;
    }

}

.user-info-card {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.user-description-card {
    margin-top: 16px;
}

.indicator-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

/* Inherit existing styles from CompanyMatchCard */
.full-match-card {
    position: relative;
    width: 100%;
    padding: 20px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.not-interested {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: #ff4d4f;
    cursor: pointer;
    font-size: 14px;
    z-index: 2;
}

.not-interested:hover {
    text-decoration: underline;
}

.match-card-row {
    margin-top: 20px;
}

.connectWithText {
    font-size: 18px;
    margin-bottom: 10px;
}

.matchCardDivider {
    margin: 12px 0;
}

.view-more-button {
    width: 100%;
    margin-top: 8px;
} 
.main-inbox {
    margin-left: 30px;
}

.email-list {
    min-height: '100vh'
}


@media (max-width: 768px) {
    .main-inbox {
        margin-left: 0;
    }
}
.main-company-home {
  margin-left: 30px;
}


@media (max-width: 768px) {
  .main-company-home {
      margin-left: 0;
  }
}


.full-height-row {
  min-height: 70vh;
}

.full-height-col {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
}

.full-height-col .ant-table-wrapper {
  flex: 1 1;
}

.full-height-col .resume-previewer {
  flex: 1 1;
  overflow: auto;
}
.automations-view {
  padding: 20px;
  
  min-height: 100vh;
}

.automations-header {
  margin-bottom: 24px;
  text-align: center;
}

.automations-header .ant-typography {
  margin-bottom: 8px;
}

.no-automations {
  text-align: center;
  padding: 60px 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.no-automations .ant-typography {
  margin-bottom: 16px;
}

.automation-card {
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid #d9d9d9;
}

.automation-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.automation-card.active {
  border-color: #52c41a;
}

.automation-card.inactive {
  border-color: #d9d9d9;
  opacity: 0.7;
}

.automation-card .ant-card-head {
  border-bottom: 1px solid #f0f0f0;
  padding: 0 16px;
}

.automation-card .ant-card-body {
  padding: 16px;
}

.automation-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.automation-trigger {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 8px;
}

.automation-config {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.config-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
}

.config-item:last-child {
  border-bottom: none;
}

.config-item .ant-typography {
  margin: 0;
}

.config-item .ant-typography strong {
  color: #262626;
  font-size: 13px;
}

.config-item .ant-typography:not(strong) {
  color: #595959;
  font-size: 14px;
  word-break: break-word;
}

.automation-meta {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #f0f0f0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.automation-meta .ant-typography {
  margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .automations-view {
    padding: 16px;
  }
  
  .automation-card {
    margin-bottom: 16px;
  }
  
  .config-item {
    padding: 6px 0;
  }
}

/* Switch styling for disabled state */
.automation-card .ant-switch-disabled {
  opacity: 0.6;
}

/* Tag styling */
.automation-trigger .ant-tag {
  margin: 0;
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 4px;
}

/* Icon styling */
.automation-card .anticon {
  font-size: 16px;
}

.automation-trigger .anticon {
  font-size: 14px;
  margin-right: 4px;
}

/* Conditions display styling */
.conditions-display {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 4px;
}

.conditions-display .ant-tag {
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 3px;
  background-color: #f0f8ff;
  border-color: #91d5ff;
  color: #1890ff;
  margin: 0;
}

.conditions-display .ant-tag:hover {
  background-color: #e6f7ff;
  border-color: #69c0ff;
} 
.main-calendar {
    margin-left: 30px;
}


@media (max-width: 768px) {
    .main-calendar {
        margin-left: 0;
    }
}
