#finland-phone-generator {
  font-family: Arial, sans-serif;
  background-color: #FAF7F0;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

#finland-phone-generator .fpn-container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 1.5rem;
  flex-wrap: wrap;
}

#finland-phone-generator .fpn-input-area,
#finland-phone-generator .fpn-output-area {
  flex: 1;
  display: flex;
  flex-direction: column;
}

#finland-phone-generator label {
  font-weight: bold;
  margin-bottom: 0.5rem;
}

#finland-phone-generator input,
#finland-phone-generator select,
#finland-phone-generator textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
  font-size: 1rem;
}

#finland-phone-generator textarea {
  height: 180px;
  resize: none;
}

#finland-phone-generator button {
  background-color: #4CAF50;
  color: white;
  border: none;
  padding: 0.8rem;
  border-radius: 6px;
  font-size: 1rem;
  margin-top: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#finland-phone-generator button:hover {
  background-color: #43a047;
}

/* Responsive Design */
@media (max-width: 900px) {
  #finland-phone-generator .fpn-container {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  #finland-phone-generator {
    padding: 1.5rem;
  }

  #finland-phone-generator textarea {
    height: 140px;
  }
}

@media (max-width: 320px) {
  #finland-phone-generator textarea {
    height: 120px;
  }
}
