.sfc-form {
  max-width: 800px;
  margin: 30px auto;
  background: #fff;
  padding: 25px 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  font-family: 'Segoe UI', sans-serif;
}

.sfc-form h2 {
  text-align: center;
  color: #0057a0;
  border-bottom: 2px solid #0057a0;
  padding-bottom: 6px;
  margin-bottom: 20px;
}

.sfc-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px 20px;
  margin-bottom: 25px;
}

.sfc-form label {
  display: flex;
  flex-direction: column;
  font-weight: 600;
}

.sfc-form input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.sfc-submit-wrap {
  text-align: center;
}

.sfc-submit {
  background: #0057a0;
  color: white;
  border: none;
  padding: 12px 30px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
}

.sfc-popup {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.sfc-popup-content {
  background: #fff;
  padding: 30px 40px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

#sfc-popup-close {
  background: #0057a0;
  color: #fff;
  border: none;
  padding: 10px 20px;
  margin-top: 15px;
  border-radius: 6px;
  cursor: pointer;
}

/* Print View */
.sfc-print-container {
  background: #fff;
  padding: 30px;
  max-width: 700px;
  margin: 20px auto;
  border: 1px solid #ccc;
  border-radius: 10px;
}

.sfc-print-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

.sfc-print-table th,
.sfc-print-table td {
  text-align: left;
  padding: 10px;
  border-bottom: 1px solid #ddd;
}

.sfc-print-table th {
  width: 30%;
  background: #f8f8f8;
}

.sfc-print-buttons {
  text-align: center;
  margin-top: 20px;
}
