.alert-success.orgs {
    position: absolute;
    width: 100%;
    text-align: center;
    padding: 9px;
    top: -25px;
}

.blue-link {
    color: #003476;
    cursor: pointer;
    outline: none;
    text-decoration: none;
}

.blue-link:hover {
    color: #00aeef;
    transition: color .5s;
    text-decoration: none;
}

.search {
    margin-top: 40px;
}

.search-group {
    /* margin: 5%; */
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 600px;
    margin-top: 1%;
    margin-bottom: 2%;
}

#history-btn {
    background-color: #00749e;
    border-color: #003476;
    text-align: center;
}
#history-btn:hover {
    background-color: #00678d !important;
}
.org-actions {
    display: grid;
    grid-template-columns: 250px 250px auto 250px;
    gap: 10px;
}

.org-actions a:hover{
    text-decoration: none;
    color: white;
}
.orgs-header-container {
    width: 80%;
}

.store-form {
    margin-bottom: 20%;
}
@media screen and (max-width: 1024px) {
    .org-actions {
        display: flex;
        flex-wrap: wrap;
        grid-auto-rows: auto;
    }
    .org-actions a{
        width: 250px;
    }
}

@media screen and (max-width: 800px) {
    .search-group {
        display: block;
        max-width: 80%;
    }

    .search-group input {
        margin-bottom: 10px;
    }
}