/* Voeg de aangepaste lettertypen toe met @font-face */
/* @font-face {
    font-family: 'Larken';
    src: url('fonts/larken.otf') format('opentype'); */
}

@font-face {
    font-family: 'Montserrat';
    src: url('fonts/montserrat.ttf') format('truetype');
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f7ede3;
    color:#2d2c4f;
    margin: 0;
    padding: 0;
}

/* Stijl voor het logo */
.logo {
    display: block;
    margin: 20px auto;
    max-width: 200px;
}

/* Stijl voor de titel */
.title {
    font-family: 'Larken', serif;
    color: #ef9b77;
    text-align: center;
    font-size: 68px;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

/* Stijl voor de tabel */
table {
    width: 90%;
    border-collapse: separate;
    border-spacing: 10px;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
}

th, td {
    padding: 20px;
    text-align: left;
    border: 0px solid #ddd;
    word-wrap: break-word;
}

tr.titels th {
    font-family: 'Larken', serif;
    font-size: 25px;
}

.ruimte {
    border-radius: 15px 50px 50px 15px;
    position: relative;
    padding-right: 40px;
}

.meetingname, .time {
    border-radius: 7px;
}

.meetingname, .time {
    background-color: #fff;
}

.meetingname {
    border-radius: 7px;
    background-color: #fff;
    position: relative; /* Zorgt ervoor dat het ::after-element zich binnen .meetingname bevindt */
}

.meetingname::after {
    content: '';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-image: url('/images/right-arrow.png');
    background-size: contain;
    background-repeat: no-repeat;
}


.color-orange::after {
    content: '';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-image: url('/images/flower.png');
    background-size: contain;
    background-repeat: no-repeat;
}
.color-red::after {
    content: '';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
    height: 25px;
    background-image: url('/images/shell.png');
    background-size: contain;
    background-repeat: no-repeat;
}
.color-purple::after {
    content: '';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 15px;
    background-image: url('/images/loop.png');
    background-size: contain;
    background-repeat: no-repeat;
}
.color-orange {
    background-color: #f2b390;

}
.color-red {
    background-color: #ce9288;

}

.color-purple {
    background-color: #dccde4;

}
.default-color {
    background-color: #fff; /* Witte achtergrond als er geen kleur is toegewezen */
}



/* Responsieve stijlen */
@media (max-width: 768px) {
    .title {
        font-size: 40px;
        margin-bottom: 10px;
    }

    .logo {
        max-width: 100px;
        margin-bottom: 10px;
    }

    table {
        width: 100%;
        border-spacing: 5px;
    }

    th, td {
        padding: 10px;
        font-size: 14px;
    }

   .meetingname, .time, .ruimte {
        font-size: 14px;
    }



    .ruimte.color-orange::after,
    .ruimte.color-red::after,
    .ruimte.color-purple::after {
        right: 10px;
        width: 15px;
        height: 15px;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 32px;
    }

    .logo {
        max-width: 80px;
    }

    th, td {
        font-size: 12px;
        padding: 8px;
    }
}
