:root {
    --primary-color: #00b140; /* Default green color */
    --secondary-color: #ffae00;
}

.samenvattingdiv {
    position: fixed;
    right: 0;
    bottom: 0;
    width: 380px;
    background-color: #ededed;
    border-right: 1px solid #ccc;
    padding: 20px 20px 20px 60px;
    box-shadow: 2px 0px 5px rgba(0, 0, 0, 0.1);
    height: 430px;
    overflow-y: hidden;
    transition: transform 0.3s ease;
    z-index: 1000;
}

.samenvattingdiv.closed {
    transform: translateY(100%);
}

.toggle-summary {
    position: fixed;
    left: 100%;
    bottom: 0;
    margin-bottom: 0px;
    cursor: pointer;
    background-color: var(--primary-color);
    color: #fff;
    width: 380px;
    padding: 10px;
    border-top-right-radius: 15px;
    border-top-left-radius: 15px;

    transform: translateX(-100%);
    z-index: 1010;
}