.url-shortener {
    padding-top: 5rem;
}

/* START MESSAGE BOX*/
/* Base box */
.url-short-message-box {
  text-align: center;
  position: relative;
  margin: 1rem auto;
  padding: 1rem 1.5rem;
  width: 100%;
  max-width: 550px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  font-size: 14px;
}

/* Close button */
.url-short-message-box .close-btn {
  position: absolute;
  right: 12px;
  top: 10px;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  opacity: 0.7;
}
.url-short-message-box .close-btn:hover {
  opacity: 1;
}

/* Success */
.url-short-message-box.success {
  background-color: #e8f9ee;
  border-left: 6px solid #33b864;
  color: #1e6d38;
}

.url-short-message-box.success .close-btn {
  color: #1e6d38;
}

/* Error */
.url-short-message-box.error {
  background-color: #fdeeee;
  border-left: 6px solid #e74c3c;
  color: #c0392b;
}

.url-short-message-box.error ul {
  padding-left: 1.2rem;
  margin-top: 0.5rem;
}

.url-short-message-box.error li {
  margin-bottom: 4px;
}

.url-short-message-box.error .close-btn {
  color: #c0392b;
}
/* END MESSAGE BOX*/

.short-url-wrapper{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.copy-btn {
  background: #e74c3c;
  color: #fff;
  border: none;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.2s;
}

.copy-btn:hover {
  background: #c0392b;
}

.menu-item .advertisement {
  height: auto;
}

.advertisement-detail-label {
  text-align: center;
}

.redirection-section {
  text-align: center;
  margin-top: 7rem;
  margin-bottom: 0rem;
  padding: 0rem;
}

.redirection-section .reservation {
  padding: 1rem;
  margin: 0;
}

.advertisement-listing-label {
  text-align: center;
}