/* Global themes */
@import url(corporate_colors.css);

body {
    /* base dark text */
    color: var(--dark-color);
    background-color: white;
    font-size: large;
    font-family:Arial, Helvetica, sans-serif;  
    border: solid var(--dark-blue) 2px;
}

.header-box {
    padding-left: 3em;
    min-height: 3em;
    
    color: var(--light-text);
    background-color:var(--dark-blue) ;
    
    align-content: center;
}

.page-header {
    font-size: 3em;
    font-weight: bold;
    color: white; 
    max-width: 100%;
}

#FZJ-page-logo{
    padding-top: 3em;
    padding-bottom: 1em;
}

.streched-text-input {
    border-radius: 15px;
    padding: 10px;
    flex: 1 1 auto;
    margin: 0px 10px 0px 0px;
    font-size: large;
}

/* Main containers */


.container {
    border: solid 1px lightgray;
    padding: 10px;
    margin: 3px 3px 3px 3px;
}

.borderless {
    border: none;
}

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

.hor {
    display: flex;
    flex-direction: row;
    justify-content: baseline;
    align-items: center;
}

/* Interactive Elements */

.base-button {
    display: inline-block;
    
    padding: 10px 28px;
    margin: 4px 2px; 
    
    background-color: var(--light-blue);
    color: rgb(0, 0, 0);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2); 
     
    border-radius: 10px;

    text-align: center;
    text-decoration: none;
    
    cursor: pointer; 
}
