
    body {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
              url('/background-witch.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: black; /* Optional: adjust text color for contrast */
}
h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #343a40;
  margin-bottom: 1.5rem;
  }
  .myTitle {
text-align: center; 
color:white;

  }

  .myMoto {
text-align: center; 


  }


 h2 {
      color: #eeeeee;
      font-size: 1.5rem;
    }

    p {
      color: #cccccc;
      margin-bottom: 4rem;
    }

    .before-converter {
        margin-bottom:3rem;
        text-align: center; 
    }
    .converter-card {
      max-width: 400px;
      width: 100%;
      padding: 2rem;
      border-radius: 0.75rem;
      box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.1);
      background: #fff;
      color: black;

      /* --- Add this for horizontal centering --- */
  margin-left: auto;
  margin-right: auto;
  /* Shorthand for the above two lines: */
  margin: 0 auto;
      margin-bottom: 3rem;
    }
    .file-input-label {
      cursor: pointer;
    }

.drop-zone {
  border: 2px dashed #ccc;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.2s, border-color 0.2s;
}
.drop-zone:hover {
  background-color: #f8f9fa;
  border-color: #28a745;
}
.drop-zone.dragover {
  background-color: #e9fbe5;
  border-color: #28a745;
}

.btn-success {
  background-color: #28a745;
  border: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s;
}
.btn-success:hover {
  background-color: #218838;
  transform: scale(1.01);
}
.btn-success:active {
  background-color: #1e7e34;
}

 #fileNameDisplay {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  max-width: 100%;
}

    .bigText {
      margin-left: 8rem;
        margin-right: 8rem;
    }
.ad-banner {
      margin: 30px 0 10px;
      width: 100%;
      height: 90px;
      background: #dcdcdc;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #888;
      border-radius: 8px;
      font-size: 14px;
    max-width: 728px;
      margin-left: auto;
      margin-right: auto;
    margin-bottom:1.5rem;
    }

 
  .card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  padding: 40px 30px;
  max-width: 500px;
  width: 100%; /* Important: Needs a defined width or max-width to work */
  text-align: center; /* This centers inline content *inside* the card, not the card itself */
  animation: fadeIn 0.4s ease-out;

  /* --- Add this for horizontal centering --- */
  margin-left: auto;
  margin-right: auto;
  /* Shorthand for the above two lines: */
  margin: 0 auto;
}

    .form-select {
        max-width:235px;
        margin-left:0.1rem;
    }

    .download-btn {
      background-color: #007bff;
      color: white;
      text-decoration: none;
      padding: 12px 24px;
      border-radius: 6px;
      font-weight: bold;
      transition: background 0.3s;
        margin-bottom:1rem;
    }
.back-btn {
      
        margin-bottom:1rem;
    margin-left: auto;
  margin-right: auto;
    text-align: center;
  margin-top: 2rem;
}
    


    .download-btn:hover {
      background-color: #0056b3;
    }

  .quote-container {
    text-align: center; /* Center the text within the container */
    max-width: 700px; /* Limit width for readability */
    margin: 4rem auto; /* Center the container itself, add vertical spacing */
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.1); /* Slightly transparent white */
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2); /* Subtle shadow */
    animation: fadeIn 1s ease-out forwards; /* Apply fade-in animation */
    /* Adjust font for quotes */
    font-family: 'Georgia', serif; /* A classic, elegant font */
    color: #f0f0f0; /* Light color for contrast on dark background */
    font-size: 1.3rem; /* Larger font size */
    line-height: 1.6;
    font-style: italic; /* Italicize for quotes */
}

.quote-author {
    margin-top: 1rem;
    font-size: 1rem;
    font-style: normal; /* Author name not italic */
    color: #ccc;
}  

    
  

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }
  
@media (max-width: 768px) {
  .bigText {
    margin-right: 0.5rem; /* or 0 if you want no margin */
    margin-left: 0.5rem;  /* optional: add left margin for balance */
  }
     .quote-container {
        margin: 2rem 1rem; /* Adjust margins for smaller screens */
        padding: 1rem;
        font-size: 1.1rem;
}
}