.title {
    margin-top: 50px;
}

h2,
h3 {
    text-align: center;
}

.link-member-alert,
.login-alert {
    margin: 50px auto;
}

.link-member-alert div a {
    color: #842029;
    font-weight: bold;
    text-decoration: underline;
}

.link-member-alert div a:hover {
    color: #5e171d;
}

.login-alert div a {
    color: #0f5132;
    ;
    font-weight: bold;
    text-decoration: underline;
}

.login-alert div a:hover {
    color: #0b3a24;
    ;
}

.instructions-container {
    width: 50%;
    margin: 50px auto;
}

.instructions-container h4 {
    margin-top: 50px;
}

li p a {
    color: black;
    font-weight: bold;
    text-decoration: underline;
}

/* Style the buttons that are used to open and close the accordion panel */
.raids-accordion {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active,
.raids-accordion:hover {
    background-color: #ccc;
}

/* Style the accordion panel. Note: hidden by default */
.panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.raids-accordion:after {
    color: #777;
    float: right;
    margin-left: 5px;
    font: normal normal normal 20px/1 FontAwesome;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\f067";
    line-height: 27px;
}

.raids-accordion {
    display: flex;
    gap: 5px;
}

.raid-name {
    flex: 1
}

.active:after {
    content: "\f068";
    /* Unicode character for "minus" sign (-) */
}

.attendance-container {
    right: 0
}

.attendance-container span {
    border: 0px;
    border-radius: .25rem;
    width: 24px;
    padding: 0 3px;
    display: inline-block;
    color: black;
    text-align: center;
    margin: 0 3px;
}

.panel div.alert {
    margin-top: 15px;
}

.description-span,
.date-span {
    margin-top: 15px;
}

@media only screen and (max-width: 600px) {
    .instructions-container {
        width: 95%;
    }
    .attendance-container {
        display: none;
    }
}