/* General Styles */
body {
  font-family: 'Arial', sans-serif;
  background-color: #f6f6f6;
  margin: 0;
  padding: 0;
}

/* Container */
.app-container {
    max-width: 1000px;
    margin: auto;
    padding: 40px;
    border-radius: 10px;
    background-color: #ffffff;
    border: 1px solid #E6E6E6;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
    margin-top: 5%;
}

/* Textbox and Copy Button */
.summary-box {
    position: relative;
    border-radius: 10px;
    padding: 20px;
    margin-top: 30px;
}

.box-title {
    font-weight: 600;
    margin-bottom: 1em;
    color: #333;
}

.copy-button {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: transparent;
    border: none;
    color: #00113f;
    padding: 10px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.copy-button:hover {
    color: #0056b3;
}

.copy-button i {
    font-size: 16px;
}

.button-container {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
}

.feedback-button {
    display: none;
    color: #fff;
    background-color: #3898ec;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.feedback-button:hover {
    background-color: #d46a28;
}
