.dropbtn {
    background-color: #04AA6D;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

.dropbtn:hover, .dropbtn:focus {
    background-color: #3e8e41;
}

#myInput {
    box-sizing: border-box;
    background-image: url('searchicon.png');
    background-position: 14px 12px;
    background-repeat: no-repeat;
    font-size: 16px;
    padding: 14px 20px 12px 45px;
    border: none;
    border-bottom: 1px solid #ddd;
}

#myInput:focus {
    outline: 3px solid #ddd;
}

.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
display: none;
position: absolute;
background-color: #f6f6f6;
min-width: 230px;
border: 1px solid #ddd;
z-index: 1;
}

.dropdown-content a {
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
}

.dropdown-content a:hover {
    background-color: #f1f1f1
}

.show {
    display:block;
}

.content{
    display: flex;
    flex-direction: column;
}

.cms-articles{
    display: flex;
    margin: 2rem;
    flex-direction: column;
    width: 20rem;
}

.dash{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 20px;
    position: relative;
}

.cms-content{
    display: flex;
    justify-content: center;
    flex-direction: column;
    width:1000px;
} 

.article-form{
    display: flex;
    flex-direction: column;
    width:700px
}

.article-content{
    display: flex;
    flex-direction: column;
    align-self: center;
}

#imagePreview {
    height: 500px;
    border: 1px solid #ddd;
    margin-top: 10px;
    display: block;
    margin:2rem;
}

.heading{
    margin: 48px 1rem 0 48px;
}

/* Dashboard button styles */
.btn-parent {
    width: 100%;
    display: flex;
    justify-content: center;
}

.btn-parent .btn {
    width: 100%;
    min-width: 180px;
    text-align: center;
    white-space: nowrap;
}