:root {
    --custom-black: #222831;
}

html {
    color: white;
    height: 100%;
}

body {
    color: white;
    height: 100%;
}

.custom-title-home {
    background-color: #ED771B;
    margin: 0px;
    padding: 0px;
}

.login-button-container {
    margin-top: 25%;
}

.login-button {
    color: white;
    transition: color .5s ease-in-out, background-color .5s ease-in-out;
    text-decoration: none;
    padding: 50px;
    border-radius: 5px;
    background-color: #ED771B;
}

.login-button:hover {
    color: #fff;
    background-color: #6c757d;
}

.custom-navbar {
    background-color: white;
    color: black;
}

.custom-navbar a {
    color: white;
}

.card-container {
    cursor: pointer;
}

.card-container:hover .card-button-container{
    display: flex!important;
}

.card {
    color: black;
    box-shadow: -5px 5px 15px 0px black;
    padding: 0px;
    border: 0px;
}

.card-button-container {
    background-color: white;
    height: fit-content;
    padding: 5px;
    transform: translateX(-5px);
    border-radius: 5px;
}

.sidebar-title-custom {
    border-top: 1px solid white;
    border-bottom: 1px solid white;
}

.custom-sidebar {
    margin-top: 15px;
    border-radius: 5px;
}

.sidebar-custom-bg {
    background-color: var(--custom-black);
}

.navbar {
    background-color: var(--custom-black);
    padding: 5px 5px;
}

.article-container {
    padding: 15px;
}

.custom-padding {
    padding: 0px 15px;
}

.custom-title {
    border-radius: 5px;
    text-align: center;
    padding: 5px;
    background-color: #ED771B;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}

.add-button {
    font-size: 5vh;
}

.custom-listing-container {
    background-color: var(--custom-black);
    border-radius: 5px;
    margin-bottom: 15px;
    padding: 5px;
}

#article_contents div label {
    display: none;
}

.remove-content-container {
    text-align: right;
    margin-top: 5px;
}

.custom-editor {
    height: 250px;
    padding: 5px;
}

.custom-editor-toolbar {
    background-color: #fff;
    color: black;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--custom-black);
    margin-top: 5px;
}

.custom-editor-toolbar-item {
    margin: 5px;
}

.list-article-container {
    margin-top: 5px;
}

.article-item {
    border: 1px solid white;
    border-radius: 5px;
    padding: 5px;
    margin-top: 5px;
}

.article-content {
    background: white;
}

.card-creation-information {
    margin-top: auto;
    margin: auto -1rem -1.5rem -1rem;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    color: white;
    padding: 5px;
    border: 1px solid white;
}

@media (max-width: 768px) {
    .card-container {
        flex-wrap: wrap!important;
    }

    .card-button-container {
        display: block!important;
        transform: translateX(0px)!important;
        margin-top: 5px;
    }
}
