body {
  font-family: 'Segoe UI', sans-serif;
  background: #f4f4f4;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.login-container {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 400px;
}

input {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #ddd;
  border-radius: 8px;
}

button {
  width: 100%;
  padding: 12px;
  background: #008cff;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
}

button:hover {
  background: #006bb3;
}

#errorMsg {
  color: red;
  margin-top: 10px;
  text-align: center;
}

.form-container {
  max-width: 1000px;
  margin: auto;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header h2 {
  margin: 0;
}

.form-section {
  margin-top: 30px;
  padding: 20px;
  border: 1px solid #eee;
  border-radius: 10px;
  background: #fafafa;
}

.form-section h3 {
  margin-bottom: 20px;
  color: #333;
}

.form-actions {
  text-align: center;
  margin-top: 30px;
}

button[type="submit"] {
  padding: 15px 30px;
  font-size: 16px;
  background: #28a745;
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}

button[type="submit"]:hover {
  background: #218838;
}

label {
  display: block;
  margin-bottom: 20px;
  font-weight: bold;
}

input[type="text"], select {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

#skillTags, #frameworkTags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.skill-tag, .framework-tag {
  background: #007bff;
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  display: flex;
  align-items: center;
}

.skill-tag span, .framework-tag span {
  margin-left: 8px;
  cursor: pointer;
}

 .form-container {
  max-width: 1000px;
 
  padding: 20px;
  text-align: left;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0;
}

.btn-select {
  padding: 8px 15px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  color: white;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.role-btn.Bootcamp { background-color: #e0e0e0; color: black; }
.role-btn.E2 { background-color: #a2c4c9; }
.role-btn.E1 { background-color: #7fb3d5; }
.role-btn.C2 { background-color: #5dade2; }
.role-btn.C1 { background-color: #2e86c1; }

.role-btn.active {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
  transform: scale(1.05);
}

.type-btn.Interview { background-color: #6c757d; }
.type-btn.Telephonic { background-color: #17a2b8; }
.type-btn.FaceToFace { background-color: #6610f2; }
.type-btn.active {
  outline: 2px solid #333;
}

.result-btn.Selected { background-color: #28a745; }
.result-btn.Rejected { background-color: #dc3545; }
.result-btn.OnHold { background-color: #ffc107; color: black; }
.result-btn.active {
  outline: 2px solid #000;
}


.result-btn.Selected { background-color: #28a745; }
.result-btn.Rejected { background-color: #dc3545; }
.result-btn.OnHold { background-color: #ffc107; color: black; }
.result-btn.NoShow { background-color: #6c757d; }
.result-btn.Cancelled { background-color: #17a2b8; }
.result-btn.DidNotAttend { background-color: #343a40; }

.result-btn.active {
  outline: 2px solid #000;
}


