﻿main {
    background: white;
    margin: 10px;
    padding: 10px;
    border-radius: 10px;
}

.help-container {
    display: flex;
    justify-content: space-evenly;
    gap:30px;
    flex-wrap:wrap;
}

.help-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: rgb(0,0,0,0.25) 0 0 10px 0;
    border-radius: 10px;
    width: 200px;
    height: 100px;
    padding-top: 10px;
    justify-content: center;
    text-decoration: none;
    transition: 0.15s;
}

    .help-card:hover {
        background: #343a40;
        color: #fadb8b
    }

    .help-card i {
        font-size: 30px;
    }


/* Style the button that is used to open and close the collapsible content */
.collapsible {
    /*background-color: #eee;*/
    border: 1px solid black;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    /*border: none;*/
    text-align: left;
    outline: none;
    font-size: 15px;
    border-bottom: none;
    font-weight: 600;
}

    /* 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, .collapsible:hover {
        background-color: #ccc;
    }

/* Style the collapsible content. Note: hidden by default */
.content {
    padding: 10px 18px;
    display: none;
    overflow: hidden;
    background-color: #f1f1f1;
    border: 1px solid black;
    border-top: none;
    border-bottom: none;
}

    .content:last-child {
    }

ul {
    list-style: none;
    transition: 0.15s;
    padding-left: 0rem;
}

li:last-child .active {
    border-bottom: none !important;
}

li:last-child .collapsible {
    border-bottom: solid black 1px;
}

li:last-child .content {
    border-bottom: solid black 1px;
}

.back {
    background: #fadb8b;
    color: #343a40;
    text-decoration: none;
    padding: 10px 25px;
    margin: 10px 0px;
    border-radius: 10px;
}

    .back:hover {
        color: #fadb8b;
        background: #343a40
    }

.help-cat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.help-cat hr{
    width:100%;
}

.help-cat ul{
    width:100%;
}

.help-head{
    display:flex;
    flex-direction:row;
    gap:15px;
    align-items:center;
}