body {
    font-family: 'Saira Extra Condensed', sans-serif;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 0;
    background-color: #be2166;
    background: linear-gradient(135deg, #de4c4c, #be2166, #8423d5);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    color: #fff;
    max-width: 100vw;
    padding-top:25px;
    padding-bottom:25px;
    min-width: 1050px;

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

table {
    width: calc(100% - 50px);
    border-collapse: collapse;
    margin: 10px 0;
    background:#0d0f25;
    background: linear-gradient(135deg, #2a2c43, #0d0f25);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px #1e1a2b;
}

th, td {
    padding: 5px;
    text-align: left;
    border-bottom: none;
    text-align: center;
}

tbody tr:nth-child(2n) {
  background: #3e406842;
}
#music-table tr td:first-child {  padding: 0;}

tr td:nth-child(2), tr td:nth-child(3) {
  font-size: 20px;
  font-weight: 600;
}

tr td:nth-child(5), tr td:nth-child(6) {
  font-style: italic;
  font-weight: 100;
}

th, th:hover {
    background: rgba(0, 0, 0, 0.3);
    color: #de4c4c;
    font-size: 1.2em;
}

tr:hover {
    background: #b0334f5e !important;
}

.form-container {
    width: calc(100% - 50px);
    background: linear-gradient(135deg, #2a2c43, #0d0f25);
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 0 20px #1e1a2b;
    box-sizing: border-box;
}

.form-container h2 {
    margin-top: 0;
    font-size: 2em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

form {
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: flex-end;
    flex-wrap: wrap;
}
form span {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: calc(20% - 10px);
}

label {
    margin: 0;
    font-size: 1.2em;
}

label > i, th > i {margin-right: 5px; font-size:0.8em;}

input[type="text"] {
    padding: 5px;
    margin-bottom: 0;
    border: none;
    border-radius: 5px;
    background: linear-gradient(135deg, #2a2c43, #0d0f25);
    border: 2px solid #3e4068;
    color: #fff;
    font-size: 1em;
    font-weight: 600;
}
input:focus-visible, td:focus-visible {
  border: 2px solid #cf3758;outline: 0;}

button, a.home {
    padding: 5px 10px;
    border: none;
    border-radius: 5px;
    background: linear-gradient(135deg, #de4c4c, #be2166, #8423d5);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    color: #fff;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.3s ease;
}

button i, a.home i {font-size: 0.8em;}

button:hover, a.home:home {
    background: #fff;
    color: #be2166;
}

.edit-btn, .delete-btn, .save-btn {
    argin: 0 5px;
    border-radius: 5px;
    background: linear-gradient(135deg, #de4c4c, #be2166, #8423d5);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    color: #fff;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
    width: 25px;
  text-align: center;
  height: 25px;
  display: inline-flex;
  justify-content: center;
  align-content: center;
  flex-direction: column;
}

.edit-btn:hover, .delete-btn:hover, .save-btn:hover {
    background: #fff;
    color: #be2166;
}

.cover-thumbnail {
    width: 35px;
    height: 35px;
    border-radius: 3px;
}
