/* General Body Styling */
body {
    background-color: #1a1a1a;
    color: #f0f0f0;
}

/* Card Styling */
.card {
    background-color: #2c2c2c;
    border: 1px solid #444;
}

/* Navbar */
.navbar {
    background-color: #23272a !important;
}

/* Buttons */
.btn-primary {
    background-color: #7289da;
    border-color: #7289da;
}
.btn-primary:hover {
    background-color: #677bc4;
    border-color: #677bc4;
}

/* Links */
a {
    color: #7289da;
}
a:hover {
    color: #99aab5;
}

/* Form Inputs */
.form-control {
    background-color: #40444b;
    border-color: #54585e;
    color: #f0f0f0;
}
.form-control:focus {
    background-color: #40444b;
    border-color: #7289da;
    color: #f0f0f0;
    box-shadow: 0 0 0 0.25rem rgba(114, 137, 218, 0.25);
}
.form-control::placeholder {
    color: #99aab5;
}

/* Page Styling */
.page {
    padding: 1em;
    background-color: #2c2c2c;
    border-radius: 8px;
    margin-top: 1em;
}

/* Playlist styling */
.list-group-item {
    background-color: #40444b;
    border-color: #54585e;
    color: #f0f0f0;
    cursor: pointer;
}
.list-group-item:hover {
    background-color: #54585e;
}
