#app {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.box {
    width: 50%;

}

.input {
    height: 600px;
    width: 100%;
    overflow: auto;
    padding: 20px;
    background-color: #dddddd;
    color: black;
    border-radius: 30px;
    overflow-y: auto;
    resize: none;
}

.text-button {
    width: 100%;
    height: 50px;
    background-color: #cccccc;
    color: black;
    border-radius: 30px;
    border: none;
    font-size: 20px;
    cursor: pointer;
    margin: 20px 0;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.text-button:hover {
    background-color: #d33d3d;
    color: white;
}

h5 {
    color: #292929;
}

.input::-webkit-scrollbar {
    display: none;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* koyu yarı şeffaf arka plan */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999; /* sayfadaki diğer her şeyin üstünde olsun */
}

.sure {
  background: white;
  padding: 20px 30px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
}