body {
  background-color: #f8f9fa;
  padding: 20px;
}

.container {
  margin-top: 2rem;
}

.remove-email {
  color: white;
  cursor: pointer;
  margin-left: 10px;
}
.remove-email:hover {
  color: white;
}

.info {
  font-size: 12px;
}

.section-separator {
  border-top: 1px solid #dee2e6;
  margin: 2rem 0;
  position: relative;
}

.section-separator::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  border-top: 3px solid #b8c1cf;
}

.form-label {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.form-check-label {
  font-weight: 500;
}

.upload-area {
  border: 2px dashed #ccc;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  position: relative;
  background: #f8f9fa;
  cursor: pointer;
}

.upload-area:hover {
  border-color: #0d6efd;
  background: #e9ecef;
}

.upload-prompt {
  padding: 20px;
}

.upload-prompt i {
  font-size: 2rem;
  color: #6c757d;
  margin-bottom: 10px;
}

.file-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.selected-file {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background: #e9ecef;
  border-radius: 4px;
}

.selected-file i {
  color: #dc3545;
  font-size: 1.5rem;
}

.selected-file #removeFile {
  padding: 0.25rem 0.5rem;
}

.selected-file #removeFile i {
  color: white;
  font-size: 0.875rem;
}

.messenger-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #0084ff;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
  z-index: 1000;
}

.messenger-btn:hover {
  transform: scale(1.1);
}

.messenger-btn i {
  color: white;
  font-size: 1.8rem;
}

.company-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.company-list .btn {
  text-align: left;
  padding: 1rem;
  font-size: 1.1rem;
}

.company-list .btn:hover {
  background-color: #0d6efd;
  color: white;
}
