#header {
    background-color: #00365E;
    color: white;
    padding: 20px;
    text-align: center;
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    height: 75px;

    display: flex;
    align-items: center;
}

#left,
#right {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 20px;
}

#right {
    justify-content: flex-end;
    margin-right: 35px;
}

#search-container {
    flex: 2;
    display: flex;
    align-items: center;
}

#search {
    width: 100%;
    padding: 15px;
    border-radius: 20px;
    border: none;
    outline: none;
    height: 25px;
}

body {
    background-color: #DD0069;
    font-family: 'Poppins';

    background-image: url("assets/GDCS PORTAAL.png");
    background-repeat: repeat;
    background-size: 150px 150px;
}

#logout {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

#sorting-container {
    margin-top: 125px;
    padding-left: 20%;
    padding-right: 20%;

    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

#space {
    flex: 1;
}

#cat-button {
    background-color: #00365E;
    color: white;
    padding: 10px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    
    flex: 1;
    text-align: center;

    box-shadow: 3px 3px 5px #00355e31;
}

#tegel-container {
    margin-top: 20px;
    border-radius: 20px;
    height: 400px;

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
}

#tegel, #hulpvolle-tegel {
    padding: 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;

    top: 0;
    width: 150px;
    height: 75px;
    margin: 10px;

    box-shadow: 3px 3px 5px #00355e31;
}

#tegel {
    background-color: #00365E;
    color: white;
}
#hulpvolle-tegel {
    background-color: white;
    color: #00365E;
}

#button-container {
    margin-top: 20px;
    margin-left: 2%;
    margin-right: 3%;
    margin-bottom: 10px;
    border-radius: 20px;
    padding: 10px;

    width: 10%;

    display: none;
    flex-direction: column;

    right: 0;
    bottom: 0;
    position: fixed;

    background-color: #00355e77;
}

#button {
    background-color: white;
    color: #00365E;
    padding: 4px;
    border-radius: 20px;
    text-decoration: none;

    width: 100%;
    text-align: center;
    margin-bottom: 7px;

    cursor: pointer;
    outline: none;
    border: none; 
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: white;
    padding: 24px;
    width: 20%;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    height: 50%;
}

.close {
    position: absolute;
    right: 12px;
    top: 10px;
    font-size: 20px;
    cursor: pointer;
}


#formName, #formUrl {
    width: 93%;
    padding: 10px;
    margin-top: 25px;
    border: 1px solid #ccc;
    border-radius: 5px;
    
    display: flex;
    justify-self: center;
}

#categories {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;

    display: flex;
    justify-self: center;
}

#submitBtn, #cancelBtn {
    background-color: #00365E;
    color: white;
    padding: 10px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;


    margin-bottom: 10px;
    width: 185px;
    text-align: center;
    cursor: pointer;
    outline: none;
    border: none;
}

#buttons {
    display: flex;
    gap: 10px;
    flex-direction: row;
    bottom: 0;
    position: absolute;
}

#hulpvolle-link {
    margin-bottom: 20px;
    margin-top: 37%;
}

#aanpassen-hulpvolle-link {
    margin-bottom: 20px;
    margin-top: 10%;
}

.icon {
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    width: 30px;
    height: 30px;
    margin-bottom: 15px;
    margin-right: 15px;
}

.icon:hover {
    opacity: 0.5;
}

#login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 40%;
    gap: 20px;

    margin-top: 14%;
    margin-left: 40%;
    margin-right: 40%;

    background-color: white;
    color: #00365E;
    padding: 80px;
    border-radius: 20px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

#login-button {
    background-color: #00365E;
    color: white;
    padding: 15px;
    margin-top: 10px;
    padding-left: 30px;
    padding-right: 30px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;

    width: 100%;
    text-align: center;
    cursor: pointer;
    outline: none;
    border: none; 
}