@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');

* {
    font-family: Montserrat;
}

html {
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box;

}

body {
    background-color: #f8f8ff;
    margin: 0 !important;
    padding: 0 !important;
}

.form-wrapper {
    position: relative;
    width: 90%;
    background-color: #fff;
    display: flex;
    margin: 2%;
    padding: 2%;
    border-radius: 5px;
    height: min-content;
}

header {
    width: 100%;
    background-color: #212529;
    color: #fff;

}

nav {
    display: flex;
    align-items: center;
    padding: 0 2%;
}

nav:hover {
    cursor: pointer;
}

.menu-item {
    width: 10%;
    margin: 0 1%;
    padding: 1% 0;
    border-radius: 5px;
    text-align: center;
    color: white;
}

.side-container {
    height: 100%;
    width: 100%;
}

.up-side-container {
    display: flex;
    justify-content: center;
}

.bottom-side-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-row {
    display: flex;
    justify-content: space-evenly;
}

input,
select {
    display: block;
    padding: 3px 0 3px 2px;
    font-weight: 400;
    line-height: 18px;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    appearance: none;
    margin: 2% auto !important;
    width: 75% !important;
}

input::placeholder {
    font-size: 10px;
}

input[type='submit'] {
    margin-top: 10px !important;
    width: 25% !important;
    background-color: #198754;
    color: white;
    transition: ease-in-out .2s;
}

input[type='submit']:hover {
    cursor: pointer;
    background-color: #21b26e;
}

p {
    margin: 1% 1%;
}

.active {
    background-color: #484848;
}

.top-input {
    display: flex;
    justify-content: space-around;
}

label {
    width: 200px;
    padding-bottom: 2%;
}

.button {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    height: fit-content;
    color: #fff;
    background-color: #198754;
    border-color: #198754;
    border: none;
    padding: .25rem .5rem;
    font-size: .875rem;
    text-align: center;
    text-decoration: none;
    margin-bottom: 0;
    transition: ease-in-out .2s;
}

.button:hover {
    cursor: pointer;
    background-color: #21b26e;
}

.delete-button {
    background-color: #dc3545;
    margin: 2px 10px;
}

.delete-button:hover {
    background-color: #ff3c4f;
}

.list-group {
    display: none;
    position: absolute;
    max-height: 30vh;
    overflow-y: auto;
    min-width: 200px;
    max-width: 230px;
    margin: 0;
    padding: 0;
    z-index: 9;
}

.list-group-item {
    position: relative;
    padding: 1rem 1rem;
    color: #212529;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, .125);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.align-center {
    align-items: center;

}

.list-group-item>img {
    border-radius: 100%;
}

.list-group-item:hover {
    background-color: #e4e6e7;
    cursor: pointer;
}

.list-group-item:first-child {
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
}

.list-item-name {
    text-align: center;
}

.flex {
    display: flex;
}

.flex-col {
    display: flex !important;
    flex-direction: column !important;
}

.table-wrapper {
    width: 70%;
    margin: 0 auto;
}

.hidden-input {
    opacity: 0;
    display: none;
}

.list-group-db {
    display: none;
    position: absolute;
    max-height: 30vh;
    overflow-y: auto;
    min-width: 200px;
    max-width: 230px;
    margin: 0;
    padding: 0;
}

.tabcontent {
    display: none;
    padding: 6px 12px;
}

.content {
    padding: 0 18px;
    display: none;
    overflow: hidden;
}

.normal-button,
#database_search {
    background-color: white;
    border: 2px solid #198754;
    transition: ease-in-out .2s;
}

.normal-button:hover,
#database_search:hover {
    background-color: #198754;
    color: white;
    cursor: pointer;
}

details>summary {
    cursor: pointer;
}

.swal2-popup {
    width: 60% !important;
}

.swal2-html-container {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.popup-table {
    width: 100%;
    text-align: center;
    border-collapse: collapse;
}

.popup-table th,
.popup-table td {
    border: 1px solid black;
    padding: .5%;
}

.delete_song {
    background-color: white;
    border: none;
    color: red
}

.delete_song:hover {
    cursor: pointer;
}

.login-wrapper {
    background-color: #212529;
    margin: 0;
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    color: white;
    font-variant: small-caps;
}

.login-wrapper input {
    width: 25%;
}

.login-wrapper input[type='submit'] {
    width: 15%;
}

#tracklist {
    overflow-x: auto;
    width: 100%;
    max-width: 100%;
}

#upload-wrapper {
    width: 100%;
}

#upload-wrapper .form-wrapper {
    width: 50%;
    text-align: center;
}

.logout-bar {
    width: 50%;
    text-align: right;
}

a {
    color: #000000;
    text-decoration: none;
}

.logout {
    color: #6f6f6f;
}

.w-100 {
    width: 100%;
}

.flex-center {
    justify-content: center;
    align-items: center;
}

.custom-table {
    margin-top: 5%;
    width: 100%;
    border-collapse: collapse;
}

.custom-table thead th {
    background-color: #f2f2f2;
    border: 1px solid #ccc;
    padding: 8px;
}

.custom-table tbody td {
    padding: 10px;
    border: 1px solid #ccc;
}

.custom-table a {
    color: #333;
    text-decoration: none;
}

.custom-table a:hover {
    color: #000;
    text-decoration: underline;
}
.opacity-0{
    opacity: 0;
}
.opacity-0:hover{
    cursor:auto
}