body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: #f4f6f9;
    color: #222;
}

header {
    background-color: #1f4e79;
    color: white;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    margin: 0;
    font-size: 28px;
}

header p {
    margin: 5px 0 0 0;
    font-size: 15px;
}

.user-box {
    text-align: right;
    background-color: rgba(255,255,255,0.12);
    padding: 10px 16px;
    border-radius: 8px;
}

.user-box strong {
    display: block;
    font-size: 15px;
}

.user-box span {
    display: block;
    font-size: 13px;
    margin-top: 3px;
    opacity: 0.9;
}

.layout {
    display: flex;
    min-height: calc(100vh - 86px);
}

.sidebar {
    width: 230px;
    background-color: #2f75b5;
    padding-top: 20px;
    flex-shrink: 0;
}

.sidebar a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 14px 24px;
    font-weight: bold;
    border-left: 5px solid transparent;
}

.sidebar a:hover {
    background-color: #1f4e79;
}

.sidebar a.active {
    background-color: #1f4e79;
    border-left: 5px solid white;
}

.content {
    flex: 1;
    padding: 30px;
}

.page-header {
    background: white;
    padding: 20px 24px;
    border-radius: 10px;
    box-shadow: 0px 2px 8px rgba(0,0,0,0.08);
    margin-bottom: 20px;
}

.page-header h2 {
    margin: 0;
    color: #1f4e79;
}

.page-header p {
    margin: 8px 0 0 0;
    color: #666;
}

.status-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
    margin-bottom: 20px;
}

.status-card {
    background: white;
    padding: 14px 18px;
    border-radius: 8px;
    font-weight: bold;
    box-shadow: 0px 2px 8px rgba(0,0,0,0.08);
    border-left: 6px solid #2f75b5;
}

.status-card.green {
    border-left-color: #3c9d5b;
}

.status-card.yellow {
    border-left-color: #d6a400;
}

.card {
    background: white;
    padding: 22px;
    border-radius: 10px;
    box-shadow: 0px 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 22px;
}

.card h3 {
    margin-top: 0;
    color: #1f4e79;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 22px;
    margin-top: 20px;
}

.info-card {
    text-align: center;
}

.info-card h3 {
    color: #1f4e79;
    margin-top: 0;
}

.zahl {
    font-size: 34px;
    font-weight: bold;
    color: #2f75b5;
    margin: 20px 0;
}

.dashboard-bottom {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 22px;
    margin-top: 5px;
}

.activity-list {
    margin: 0;
    padding-left: 20px;
}

.activity-list li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.quick-actions {
    display: grid;
    gap: 12px;
}

.quick-actions a,
.button {
    display: inline-block;
    background-color: #2f75b5;
    color: white;
    text-decoration: none;
    padding: 12px 16px;
    border-radius: 7px;
    text-align: center;
    font-weight: bold;
    border: none;
}

.quick-actions a:hover,
.button:hover {
    background-color: #1f4e79;
}

.toolbar {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.toolbar input,
.toolbar select {
    padding: 11px;
    border: 1px solid #ccc;
    border-radius: 7px;
    font-size: 14px;
}

.toolbar input {
    min-width: 240px;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th {
    background-color: #1f4e79;
    color: white;
    text-align: left;
    padding: 12px;
}

td {
    padding: 12px;
    border-bottom: 1px solid #ddd;
}

tr:hover {
    background-color: #f2f6fb;
}

.badge {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: bold;
}

.badge.green {
    background-color: #e4f3e9;
    color: #2d7a45;
}

.badge.yellow {
    background-color: #fff4cc;
    color: #8a6a00;
}

footer {
    margin-top: 10px;
    padding: 18px 0;
    color: #777;
    font-size: 13px;
    text-align: center;
}
.landing-page {
    background: #0f4c81;
    min-height: 100vh;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}

.landing-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 40px;
}

.landing-card {
    background: white;
    border-radius: 20px;
    width: 900px;
    max-width: 100%;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

.landing-logo {
    text-align: center;
    padding: 40px 20px 20px 20px;
}

.landing-logo h1 {
    color: #0f4c81;
    margin-bottom: 10px;
    font-size: 42px;
}

.landing-logo h2 {
    color: #666;
    font-weight: normal;
}

.landing-image {
    text-align: center;
    padding: 0 40px;
}

.landing-image img {
    width: 100%;
    max-height: 330px;
    object-fit: cover;
    border-radius: 14px;
    display: block;
}

.welcome-text {
    text-align: center;
    padding: 30px;
}

.welcome-text h3 {
    color: #0f4c81;
    margin-bottom: 15px;
}

.login-box {
    width: 350px;
    margin: auto;
    padding-bottom: 40px;
}

.login-box input {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-sizing: border-box;
}

.login-button {
    display: block;
    text-align: center;
    background: #0f4c81;
    color: white;
    padding: 14px;
    border-radius: 10px;
    text-decoration: none;
}
.dashboard-container {
    min-height: 100vh;
    background: #f5f7fa;
}

.dashboard-header {
    background: #0f4c81;
    color: white;
    padding: 25px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard-header h1 {
    margin: 0;
}

.dashboard-header p {
    margin: 5px 0 0 0;
}

.user-box {
    background: white;
    color: #333;
    padding: 15px 20px;
    border-radius: 12px;
    min-width: 220px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.user-box strong {
    color: #0f4c81;
    font-size: 17px;
}

.user-box span {
    color: #666;
    font-size: 14px;
}

.logout-button {
    display: inline-block;
    background: #0f4c81;
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
}

main {
    padding: 40px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.card h3 {
    color: #0f4c81;
    margin-top: 0;
}

.card.disabled {
    opacity: 0.5;
}
.welcome-line {
    font-size: 18px;
    color: #555;
    margin-bottom: 28px;
}

.status-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 22px;
    margin-bottom: 35px;
}

.status-box {
    background: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    border-left: 6px solid #0f4c81;
}

.status-box strong {
    display: block;
    color: #0f4c81;
    margin-bottom: 12px;
}

.status-box span {
    font-size: 26px;
    font-weight: bold;
}

.card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.card-link:hover {
    transform: translateY(-3px);
    transition: 0.2s;
}