/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  background: #f2f2f2;
  padding: 20px;
}

/* Resume Builder Section */
.resume-builder {
  max-width: 900px;
  margin: auto;
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.resume-builder h1 {
  text-align: center;
  margin-bottom: 20px;
}

/* Form Styling */
form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}
form input, form textarea {
  padding: 10px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
}
form button {
  background: #4CAF50;
  color: white;
  padding: 12px;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}
form button:hover {
  background: #388E3C;
}

/* Resume Layout */
.resume-template {
  display: flex;
  border: 1px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 20px;
}

/* Left Panel */
.resume-template .left {
  background: #007B8A;
  color: white;
  width: 35%;
  padding: 20px;
  text-align: center;
}
.resume-template .left img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid white;
}
.resume-template .left h3 {
  margin-bottom: 10px;
}
.resume-template .section-title {
  margin-top: 20px;
  margin-bottom: 5px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 13px;
  border-bottom: 1px solid white;
  padding-bottom: 3px;
  text-align: left;
}
.resume-template .left p {
  font-size: 14px;
  margin: 5px 0;
  text-align: left;
}

/* Right Panel */
.resume-template .right {
  width: 65%;
  padding: 20px;
  color: #333;
}
.resume-template .right h2 {
  color: #007B8A;
  margin-bottom: 10px;
}
.resume-template .right p {
  font-size: 14px;
  margin-bottom: 10px;
}
.resume-template .right .section-title {
  margin-top: 20px;
  margin-bottom: 8px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 13px;
  border-bottom: 1px solid #007B8A;
  padding-bottom: 3px;
}

/* Print Layout */
@media print {
  body {
    background: white;
    padding: 0;
  }
  .resume-builder, form, button {
    display: none !important;
  }
  #resumeOutput {
    display: block;
  }
}
