body {
    margin: 0;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main {
    width: 100%;
    flex: 0 1 auto;
    min-width: 400px;
}

.main h1 {
    text-align: center;
}

.panel {
    position: relative;
    top: 0px;
    height: 44px;
    width: 100%;
    background-color: #000000;
}

.panel .indented_left {
    position: absolute;
    top: 11px;
    left: 12px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    color: #ffffff;
    background-color: #000000;
}

.panel .indented_right {
    position: absolute;
    top: 11px;
    right: 12px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    color: #ffffff;
    background-color: #000000;
}

.profile-input {
    display: flex;
    text-align: center;
    align-items: center; 
    justify-content: flex-start; 
    gap: 44px; 
    padding: 10px 10px;
    border: 2px solid #cccccc;
}

.profile-input label {
    margin-left: 5px;
}

.profile-input input {
    margin-left: 5px;
}

.selector {
    height: 18px;
    padding-bottom: 2px;
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
}

.selector input[type="checkbox"] {
    font-size: 16px; 
}

.search-box {
    margin: 1em;
}

.search-box input {
    margin-left: 5px;
}

.action-button {
    margin: 0em 1em;
    padding: 0.3em 1em;
}

.login-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 90vh;
    background-color: black;
}

.background {
    width: 100%;
    height: min(30%, 300px);
    background-color: white;
    clip-path: polygon(0% 80%, 100% 100%, 100% 20%, 0% 0%);
    display: flex;
    align-items: center;
    justify-content: center;
}

h1.login-header {
    position: relative;
    bottom: min(10%, 50px);;
    font-size: 3.5em;
    color: white;
}

h1.login-description {
    position: relative;
    top: min(10%, 50px);
    font-size: 1.5em;
    color: white;
}

a.login-button {
    display: block;
    height: 4em;
    width: 20em;
    text-align: center;
    text-decoration: none;
}

a.login-button button {
    width: 100%;
    height: 100%;
    font-weight: bold;
    font-size: 1.5em;
    padding: 0.2em 0.5em;
    color: #000000;
    background-color: #dddddd;
    border-radius: 0.5em;
    transition: background-color 0.7s, box-shadow 0.7s, color 0.7s;
}

.login-button button:hover {
    color: #ffffff;
    background-color: #000000;
    box-shadow: 0 0 10px rgba(128, 128, 128, 0.7);
}

#profile_list label {
    display: flex;
    padding: 0px;
    border: 1px solid #cccccc;
}

#profile_list a {
    margin: 10px;
    color: #000000;
    text-decoration: none;
}

#profile_list input[type="checkbox"] {
    margin-left: 10px;
    margin-right: 12px;
}
