/* ==============================================================================
   BERMeG Meet Administration
   ==============================================================================
   Datei          : style.css
   Version        : 0.7.0
   Status         : Testsystem

   Beschreibung:
   -------------------------------------------------------------------------------
   Zentrales Stylesheet der BERMeG Meet Administration.

   Letzte Änderung:
   -------------------------------------------------------------------------------
   12.07.2026 | Steven | Version 0.7.0 | Neues Dashboard-Layout
   ==============================================================================
*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:Arial,Helvetica,sans-serif;
    background:#eef3f8;
    color:#333;

}

.layout{

    display:flex;
    min-height:100vh;

}

/* ==========================================================================
   Sidebar
   ========================================================================== */

.sidebar{

    width:300px;
    background:#0f315b;
    color:white;

    display:flex;
    flex-direction:column;

}

.logo{

    padding:30px;
    text-align:center;

}

.logo img{

    width:140px;
    margin-bottom:20px;

}

.logo h2{

    font-size:22px;
    margin-bottom:5px;

}

.logo p{

    color:#d8e3ef;

}

.sidebar hr{

    border:none;
    border-top:1px solid rgba(255,255,255,.20);
    margin:0 25px;

}

nav{

    padding:25px;

}

nav a{

    display:block;

    color:white;

    text-decoration:none;

    padding:16px 18px;

    margin-bottom:12px;

    border-radius:12px;

    transition:.25s;

    line-height:1.4;

}

nav a:hover{

    background:#1f5ea8;

}

nav small{

    color:#cfd9e5;

}

.footer{

    margin-top:auto;

    padding:25px;

    font-size:14px;

    color:#cfd9e5;

}

/* ==========================================================================
   Hauptbereich
   ========================================================================== */

.main{

    flex:1;

    display:flex;

    flex-direction:column;

}

header{

    height:80px;

    background:white;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:0 40px;

    border-bottom:1px solid #ddd;

    font-size:20px;

}

header a{

    color:#c61b1b;

    text-decoration:none;

    font-weight:bold;

}

.background{

    flex:1;

    background-image:url("../images/background.png");

    background-size:cover;

    background-position:center;

    padding:45px;

}

/* ==========================================================================
   Karten
   ========================================================================== */

.card{

    max-width:760px;

    margin:auto;

    background:white;

    border-radius:18px;

    padding:40px;

    box-shadow:0 10px 30px rgba(0,0,0,.15);

}

.card h1{

    color:#123d72;

    margin-bottom:15px;

}

.card p{

    margin-bottom:20px;

}

/* ==========================================================================
   Formulare
   ========================================================================== */

label{

    display:block;

    margin-top:18px;

    margin-bottom:8px;

    font-weight:bold;

}

input{

    width:100%;

    padding:12px;

    border:1px solid #ccc;

    border-radius:8px;

    font-size:15px;

}

button{

    margin-top:20px;

    background:#1f5ea8;

    color:white;

    border:none;

    border-radius:8px;

    padding:14px 20px;

    font-size:16px;

    cursor:pointer;

}

button:hover{

    background:#184b87;

}
