html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
    position: relative;
    background: #fff;
}

.kc-start {
    width: min(920px, calc(100% - 32px));
    display: flex;
    flex-direction: column;
    align-items: center;
}

#graphic {
    display: block;
    height: 80px;
    width: 220px;
    margin: 0 auto;
    background-image: url("../../bilder/kamcura-red-left_2026_220x80px.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

.divider {
    width: 120px;
    height: 2px;
    background: #ccc;
    margin: 50px auto 40px auto;
    border-radius: 1px;
}

.kc-miniTool {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;

    text-decoration: none;

    padding: 18px 28px;
    margin-bottom: 60px;

    border: 1px solid #ddd;
    border-radius: 6px;

    background: #fafafa;

    transition: all 0.25s ease;
}

.kc-miniTool:hover {
    border-color: #D02528;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.kc-miniToolTitle {
    font-size: 22px;
    font-weight: 600;
    color: #333;
}

.kc-miniToolTitle i {
    margin-right: 8px;
    color: #D02528;
}

.kc-miniToolSub {
    font-size: 14px;
    color: #666;
}

#footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 10px;
    background: #f2f2f2;
    text-align: center;
    font-size: 14px;
    border-top: 1px solid #ccc;
}

#footer a {
    font-weight: bold;
    color: #D02528;
    text-decoration: none;
    transition: all 0.5s ease;
}

#footer a:hover {
    color: #AD1F21;
    text-decoration: underline;
}

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

.modal-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    width: 90%;
    max-width: 400px;
    position: relative;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
    font-family: "Noto Sans", Arial, sans-serif;
}

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

.modal-content form input,
.modal-content form textarea {
    width: 100%;
    padding: 8px;
    margin: 8px 0;
    box-sizing: border-box;
    background-color: #f2f2f2;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: "Noto Sans", Arial, sans-serif;
}

.modal-content form input:focus,
.modal-content form textarea:focus {
    outline: none;
    border-color: #1D7AC5;
    box-shadow: 0 0 5px #1D7AC5;
}

.modal-content form button {
    padding: 8px 16px;
    border: none;
    background: #1D7AC5;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
}

.modal-content form button:hover {
    background: #155e95;
}

@media (max-width: 850px) {
    .kc-toolBox {
        flex-direction: column;
        text-align: center;
        gap: 18px;
    }

    .kc-toolArrow {
        display: none;
    }
}