body {
  font-family: Arial, sans-serif;
  background-color: #f7f7f7;
  margin: 0;
  padding: 0;
  color: #333;
}

.container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  gap: 20px;
}

header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: bold;
}
.logo span {
  font-weight: lighter;
}

.privacy {
  font-size: 14px;
  text-decoration: none;
  color: #999;
}

.job-card {
  flex: 2;
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.job-card h2 {
  margin-top: 0;
}

.job-card ul {
  padding-left: 20px;
}

.apply-box {
  flex: 1;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  align-self: flex-start;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.apply-box button {
  background: black;
  color: white;
  width: 100%;
  padding: 10px;
  font-size: 16px;
  margin-bottom: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.apply-box input[type="text"] {
  width: 95%;
  margin-bottom: 15px;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.socials {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}
.socials img {
  width: 24px;
  height: 24px;
}

.details p {
  font-size: 14px;
  margin: 5px 0;
}

.privacy-link {
  font-size: 13px;
  margin-top: 30px;
}

.headLogo {
    width: 30px;
    padding-right: 5px;
}

.titleLogo {
    font-size: 30px;
    font-weight: bolder;
}

/* Modal Styles */
.modal {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.modal.hidden {
  display: none;
}

.modal-content {
  background: #fff;
  width: 90%;
  max-width: 800px;
  padding: 2rem;
  border-radius: 10px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.close-button {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 24px;
  cursor: pointer;
}

.form-group {
  margin-bottom: 1rem;
}

input, select {
  width: 100%;
  padding: 0.5rem;
  margin-top: 0.3rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

button[type="submit"] {
  background-color: #000;
  color: white;
  padding: 0.7rem 1.5rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.socials img {
  width: 90px; /* Ubah sesuai kebutuhan, misalnya 40px, 50px, dll */
  height: auto; /* Menjaga rasio gambar */
}
