/* Student Job Entry Display Styles - Confirmation & Success Pages */

/* Button styles for button-row at end of confirmation */
.jms-profile-view-button-row {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  justify-content: center;
}

.jms-profile-view-btn {
  background-color: var(--color-white);
  color: var(--color-common);
  border: 2px solid var(--color-common);
  padding: 10px 30px;
  border-radius: 25px;
  font-size: .875rem;
  cursor: pointer;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.jms-profile-view-btn:hover {
  background-color: var(--color-common);
  color: var(--color-white);
}

.jms-profile-view-btn-icon {
  color: var(--color-white);
  font-size: .75rem;
  font-weight: bold;
  background-color: var(--color-common);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 0;
  margin: 0;
}

/* Menu Card Styles for Success Page */
.jms-profile-menu-card {
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 30px;
}

.jms-profile-menu-item {
  display: flex;
  align-items: center;
  padding: 15px 10px;
  border-bottom: 1px solid #e8e8e8;
  cursor: pointer;
  text-decoration: none;
  color: var(--color-body);
  transition: background-color 0.2s;
}

.jms-profile-menu-item:last-child {
  border-bottom: none;
}

.jms-profile-menu-item:hover {
  background-color: #f5f5f5;
}

.jms-profile-menu-icon {
  width: 24px;
  height: 24px;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.jms-profile-menu-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-common);
  fill: none;
  stroke-width: 2;
}

.jms-profile-menu-label {
  flex: 1;
  font-size: 15px;
  font-weight: bold;
  color: var(--color-body);
}

.jms-profile-menu-arrow {
  color: var(--color-common);
  font-size: 18px;
  font-weight: bold;
}

/* Success Page Specific Styles */
.jms-success-card {
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 40px;
  text-align: center;
  margin-bottom: 30px;
}

.jms-success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}

.jms-success-icon svg {
  width: 100%;
  height: 100%;
}

.jms-success-title {
  font-size: 24px;
  font-weight: bold;
  color: var(--color-common);
  margin-bottom: 20px;
}

.jms-success-message {
  font-size: 16px;
  color: var(--color-body);
  line-height: 1.8;
  margin-bottom: 30px;
}

.jms-success-message p {
  margin: 10px 0;
}

.jms-success-message strong {
  color: var(--color-common);
  font-size: 18px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .jms-profile-view-button-row {
    flex-direction: column;
    gap: 10px;
  }

  .jms-profile-view-btn {
    width: 100%;
    justify-content: center;
  }

  .jms-success-card {
    padding: 20px;
  }

  .jms-success-title {
    font-size: 20px;
  }

  .jms-success-message {
    font-size: .875rem;
  }
}
