body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fcfcfc;
  }

.loadingStatus {
  display: none;
}
  
  /*.container {
    display: flex;
    gap: 30px;
    padding: 30px;
  }*/
  
  .form-section {
    width: 40%;
  }
  
  .preview-section {
    /*width: 40%;*/
    border-left: 1px solid #ccc;
    padding-left: 20px;
    top: 1rem;
  }

  .addField {
    margin-top: 15px;
  }

  .deleteButtn {
    border:none;
    background-color: transparent;
  }
  
  input, select {
    display: block;
    width: 100%;
    margin-bottom: 15px;
    padding: 8px;
    font-size: 16px;
  }

  .template-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, auto));
    gap: 20px;
    padding: 20px;
    justify-content: center;
  }

  .template-option {
    width: 150px;
    height: auto;
    max-width: 100%;
    border: 2px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.3s ease;
    
    position: relative;
  }

  .template-option:hover,
  .template-option.selected {
    border-color: #007bff;
  }

  .template-option img {
    width: 100%;
    height: auto;
  }
  
  .select-btn {
    position: absolute;
    
    bottom: 90px;
    left: 37px;
    opacity: 0;
    
    transition: opacity 0.2s ease;
    padding: 6px 12px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;

  }

  .template-option:hover .select-btn {
    opacity: 1;
  }

  .about-me {
    color: #333;
    margin-top: 2rem;
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-family: 'Inter', sans-serif;
  }