/* General Body Styles */
body {
  font-family: Arial, sans-serif;
  background-color: #f0f0f0;
  color: #333;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Outer Container */
.outer-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

/* Inner Container */
.inner-container {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 25px;
  box-shadow: 0px 0px 15px rgba(0,0,0,1);
  margin: 0 auto;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

/* Heading */
h1 {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  color: #000; /* black color */
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

/* URL Input Box */
.url-input {
  width: 100%;
  min-height: 250px;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 8px;
  font-size: 14px;
  resize: none;
  background-color: #f5f5f5; /* grey white */
  color: #000; /* full black text */
  box-sizing: border-box;
  border: none;
  outline: none;
}

/* Hover & Focus bhi same color rakhne ke liye */
.url-input:hover,
.url-input:focus {
  background-color: #f5f5f5;
  color: #000;
}

/* Button Layout */
.buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 20px;
}

/* Button Styling */
.button {
  background-color: #ffca28;
  color: #000;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  margin: 10px 5px;
  border-radius: 8px;
  flex-basis: 48%;
  text-align: center;
  transition: background-color 0.3s ease;
}

/* Button Hover Effect */
.button:hover {
  background-color: #e6b324;
}

/* Notification Styling */
.notification {
  background-color: #e6b324;
  color: #000;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 8px;
  text-align: center;
  display: none;
}
