/* public/styles.css */
body {
  font-family: Arial, sans-serif;
  text-align: center;
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #f9f9f9;
  color: #333;
}

.content {
  flex: 1;
  padding-top: 50px;
}

h1 { color: #0056b3; }

/* Menu Styles */
.menu {
  margin: 40px auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 300px;
}

/* Button Styles */
.btn {
  padding: 15px 20px;
  font-size: 18px;
  text-decoration: none;
  color: white;
  background-color: #0056b3;
  border-radius: 8px;
  border: none;
  transition: background-color 0.3s;
  cursor: pointer;
  display: inline-block;
  font-family: inherit;
}
.btn:hover { background-color: #003d82; }

/* Form Styles */
form {
  margin: 20px auto;
  padding: 30px;
  max-width: 400px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  text-align: left;
}
label {
  display: block;
  margin-bottom: 15px;
  font-weight: bold;
}
input[type="text"], input[type="url"] {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  font-size: 16px;
}

/* Footer Styles */
footer {
  padding: 20px;
  color: #666;
  font-size: 14px;
  background-color: #eee;
}

/* Popup Styles */
#popup {
  display: none;
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  padding: 30px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  z-index: 1000;
  text-align: center;
  min-width: 300px;
}
#overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 999;
}
