
div {
    max-width: 500px;
    margin: 2rem auto;
    font-family: Arial, sans-serif;
}


h2, h3 {
    text-align: center;
    margin-bottom: 1rem;
}

input[type="text"], textarea {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    box-sizing: border-box;
}


button {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    background-color: #007bff;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 0.2rem;
}

button:hover {
    background-color: #0056b3;
}


/* Unique styling for this welcome component */
.welcome-container {
  max-width: 400px;
  margin: 0 auto;
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
}

.welcome-input-group {
  display: flex;
  flex-direction: column;
}

.welcome-input {
  margin-bottom: 10px;
}

.welcome-btn {
  align-self: flex-start;
}

/* Optional modal styling */
.welcome-modal-content {
  border-radius: 10px;
}

.welcome-modal-body {
  font-size: 1.1rem;
}

.welcome-modal-title {
  font-weight: bold;
}


