body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #000;
  color: #f5f5f5;
  margin: 0;
  padding: 0;
}

#artist-form-section {
  max-width: 650px;
  margin: 50px auto;
  padding: 30px;
  background-color: #1c1c1c;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

h1,
h2,
p {
  text-align: center;
  margin-bottom: 20px;
}

h1 {
  color: #f5f5f5;
  font-weight: 700;
  font-size: 2em;
}

h2 {
  color: #a9a9a9;
  font-weight: 600;
  font-size: 1.5em;
}

p {
  color: #d3d3d3;
  margin-bottom: 25px;
}

hr {
  border: 0;
  height: 1px;
  background-color: #333;
  margin: 25px 0;
}

form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

label {
  font-weight: 600;
  color: #f5f5f5;
}

input[type="text"],
input[type="url"],
datalist,
textarea {
  padding: 14px;
  border: 1px solid #333;
  border-radius: 6px;
  background-color: #1c1c1c;
  color: #f5f5f5;
  font-size: 1em;
  transition:
    border-color 0.3s ease,
    background-color 0.3s ease;
}

input:focus,
textarea:focus {
  border-color: #87ceeb;
  background-color: #333;
  box-shadow: 0 0 8px rgba(135, 206, 235, 0.5);
}

input[type="checkbox"] {
  margin-right: 10px;
}

button,
input[type="submit"] {
  padding: 14px 28px;
  background-color: #87ceeb;
  color: #1c1c1c;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1em;
  transition:
    background-color 0.3s ease,
    box-shadow 0.3s ease;
}

button:hover,
input[type="submit"]:hover {
  background-color: #f5f5f5;
  color: #000;
  box-shadow: 0 6px 14px rgba(245, 245, 245, 0.3);
}

button:active,
input[type="submit"]:active {
  box-shadow: 0 2px 6px rgba(135, 206, 235, 0.2);
}

#add-link-button,
#home-return-button {
  background-color: #f5f5f5;
  color: #1c1c1c;
}

#add-link-button:hover,
#home-return-button:hover {
  background-color: #87ceeb;
  color: #000;
  box-shadow: 0 6px 14px rgba(135, 206, 235, 0.3);
}

#add-link-button:active,
#home-return-button:active {
  box-shadow: 0 2px 6px rgba(245, 245, 245, 0.2);
}

.delete-link-button {
  background-color: #d64545;
  color: #f5f5f5;
  border-radius: 6px;
  padding: 12px 18px;
  margin-left: 12px;
  cursor: pointer;
  transition:
    background-color 0.3s ease,
    box-shadow 0.3s ease;
}

.delete-link-button:hover {
  background-color: #b63434;
  box-shadow: 0 6px 14px rgba(214, 69, 69, 0.3);
}

.delete-link-button:active {
  box-shadow: 0 2px 6px rgba(214, 69, 69, 0.2);
}

.media-link-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.explicit-content-section {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
}

.required-message {
  display: block;
  margin-top: 10px;
  font-size: 0.9em;
  color: #87ceeb;
  text-align: center;
}
