/* Container Styling */
.unique-app-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 30px;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  /* Title Styling */
  .unique-title {
    text-align: center;
    margin-bottom: 30px;
    color: #2c3e50;
    font-size: 32px;
    font-weight: bold;
  }
  
  /* Editor Container */
  .unique-editor-container {
    margin-bottom: 25px;
  }
  
  /* Section Titles */
  .unique-section-title {
    margin-bottom: 12px;
    font-size: 20px;
    color: #34495e;
  }
  
  /* Quill Editor Styling */
  .unique-quill-editor {
    height: 180px;
    background: #fdfdfd;
    border: 1px solid #dcdcdc;
    border-radius: 5px;
  }
  
  /* Button Container */
  .unique-button-container {
    text-align: center;
    margin: 20px 0;
  }
  
  /* Button Styling */
  .unique-button {
    background-color: #3498db;
    color: #fff;
    border: none;
    padding: 12px 24px;
    margin: 0 8px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 500;
    transition: transform 0.2s, background-color 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .unique-button:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
  }
  
  .unique-button:active {
    transform: translateY(0);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  /* Responsive Adjustments */
  @media (max-width: 600px) {
    .unique-app-container {
      padding: 20px;
    }
  
    .unique-title {
      font-size: 24px;
    }
  
    .unique-section-title {
      font-size: 18px;
    }
  
    .unique-quill-editor {
      height: 140px;
    }
  
    .unique-button {
      padding: 10px 20px;
      font-size: 16px;
      margin: 5px;
    }
  }
  .unique-button:disabled {
    background-color: #ccc !important;
    cursor: not-allowed !important;
  }
  