

/* Global Styles */
body {
    font-family: "Poppins", Arial, sans-serif;
    background: linear-gradient(135deg, #2c3e50, #ABBA7C);
    padding: 20px;
    margin: 0;
    color: #ffffff;
  }
  
  /* Container Styles */
  .container {
    max-width: 900px;
    margin: 0 auto;
    background: #1e272e;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.7);
    border: 2px solid #ABBA7C;
  }
  
  /* Header Styles */
  h1,
  h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #f7f1e3;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    background: -webkit-linear-gradient(45deg, #ffdd59, #ABBA7C);
    -webkit-background-clip: text;
    color: transparent;
  }
  
  /* Form Styles */
  form {
    display: flex;
    flex-direction: column;
  }
  
  fieldset {
    margin-bottom: 25px;
    padding: 25px;
    border: 2px solid #ABBA7C;
    border-radius: 12px;
    background-color: #485460;
  }
  
  legend {
    font-weight: bold;
    font-size: 1.3rem;
    color: #ffdd59;
  }
  
  label {
    display: block;
    margin-top: 15px;
    font-weight: bold;
    color: #ffdd59;
  }
  
  input {
    margin-top: 10px;
    padding: 12px;
    border: 2px solid #ABBA7C;
    border-radius: 8px;
    width: calc(100% - 24px);
    box-sizing: border-box;
    background-color: #2f3542;
    color: #ffffff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }
  
  input:focus {
    border-color: #ABBA7C;
    box-shadow: 0 0 8px #ABBA7C;
    outline: none;
  }
  
  button {
    padding: 15px;
    background-color: #ff4757;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    margin-top: 15px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }
  
  button:hover {
    background-color: #ff6b81;
    transform: scale(1.05);
  }
  
  /* Resume Styles */
  #resume {
    margin-top: 30px;
  }
  
  #resume-content {
    background-color: #57606f;
    padding: 30px;
    border-radius: 15px;
    border: 2px solid #ffdd59;
    color: #ffffff;
    box-shadow: 0 0 15px rgba(255, 221, 89, 0.6);
  }
  
  #resume-content h3 {
    margin-top: 0;
    color: #ffdd59;
  }
  
  #resume-content p,
  #resume-content ul {
    margin: 10px 0;
  }
  
  ul {
    list-style-type: disc;
    padding-left: 25px;
    color: #ffffff;
  }
  
  /* Share Section Styles */
  #share-section {
    margin-top: 40px;
    text-align: center;
  }
  
  #shareable-link {
    display: block;
    margin: 15px 0;
    color: #00d2d3;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s ease;
  }
  
  #shareable-link:hover {
    color: #ffdd59;
    text-decoration: underline;
  }
  
  #copy-link-btn,
  #download-btn {
    display: inline-block;
    margin: 10px;
    padding: 12px 25px;
    background-color: #1e90ff;
    color: #ffffff;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
  }
  
  #copy-link-btn:hover,
  #download-btn:hover {
    background-color: #00a8ff;
    box-shadow: 0 0 10px #00d2d3;
    border-color: #00d2d3;
  }
  
  /* Responsive Styles */
  @media only screen and (max-width: 768px) {
    .container {
      padding: 30px;
      max-width: 100%;
    }
  
    h1,
    h2 {
      font-size: 1.8rem;
      margin-bottom: 20px;
      letter-spacing: 2px;
    }
  
    form,
    fieldset {
      padding: 20px;
    }
  
    legend {
      font-size: 1.2rem;
    }
  
    input,
    button {
      font-size: 1rem;
      padding: 10px;
    }
  
    button {
      margin-top: 10px;
    }
  }
  
  @media only screen and (max-width: 480px) {
    h1,
    h2 {
      font-size: 1.5rem;
      letter-spacing: 1px;
    }
  
    input,
    button {
      font-size: 0.9rem;
      padding: 8px;
    }
  
    .container {
      padding: 20px;
    }
  }
  
