/* Zorg ervoor dat het hoofdfont consistent is */
body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f7fa;

}

.main-content {
    margin-top: 50px;
}


/* Account Dropdown Styles */
.account-dropdown {
    position: relative;
    display: inline-block;
}

.account-dropdown .dropbtn {
    background-color: #fff;
    color: #333;
    padding: 10px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.account-dropdown .dropbtn:hover {
    color: #007bff;
}

.account-dropdown .fa-caret-down {
    margin-left: 5px;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: #fff;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 5px;
}

.dropdown-content a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

/* Algemene reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Card styling */
.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.card .btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.card .btn-primary:hover {
    background-color: #0056b3;
    border-color: #004080;
}

.form-control {
    border-radius: 5px;
}

.is-invalid {
    border-color: #dc3545;
}

.is-invalid:focus {
    box-shadow: none;
}

.alert {
    font-size: 0.9rem;
}

.task-icon {
    font-size: 1.5rem;
    margin-right: 10px;
    color: #007bff;
}

.status-badge {
    font-size: 0.85rem;
}

.progress {
    height: 8px;
    border-radius: 4px;
    margin-top: 10px;
}

#hidden-image {
    position: fixed;
    top: -30px;
    left: -30px;
    width: 100px;
    height: auto;
    z-index: -1;
}

.board-container {
    padding: 0px;
}

.board {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: calc(100vh - 200px); /* Pas de hoogte aan afhankelijk van de hoogte van je menu en legenda */
}

.column {
    flex: 1;
    margin: 0 10px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #fafafa;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.column h2 {
    text-align: center;
    margin-bottom: 5px;
    color: #333;
}

.column p {
    text-align: center;
    font-size: 0.9em;
    color: #666;
    margin-top: 0;
    margin-bottom: 10px;
    height: 40px;
    line-height: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.task-container {
    width: 100%;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.task {
    width: 90%;
    margin: 8px 0;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #fff;
    cursor: grab;
    position: relative;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.task.dragging {
    opacity: 0.5;
}

.task-title {
    font-size: 1em;
    margin-right: 20px;
	font-weight: normal;
}

.task-details {
    margin-top: 10px;
}

.task-deadline {
    font-size: 0.9em;
    color: #555;
}

.task-responsible {
    display: flex;
    align-items: center;
    font-size: 0.9em;
    color: #555;
}

.task-deadline {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 0.9em;
    color: #555;
}

.dot {
    height: 16px;
    width: 16px;
    border-radius: 50%;
    display: inline-block;
    position: absolute;
    top: 10px;
    right: 10px;
}

.legend {
    display: flex;
    justify-content: left;
    align-items: left;
    margin-bottom: 10px;
    margin-left: 10px;
}

.legend-item {
    display: flex;
    align-items: center;
    margin: 0 15px;
}

.legend-item .dot {
    margin-right: 5px;
    position: static;
}

        .task-avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 12px;
            border: 2px solid #ddd;
        }


		
		
.deadline-warning {
    color: red;
}

.kalender-container {
    padding-top: 80px;
}

.kalender-container h2 {
    margin-top: 20px;
    color: #2B5567;
}

.kalender-container table {
    margin-top: 15px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.kalender-container th, .kalender-container td {
    padding: 15px;
    border: 1px solid #dee2e6;
    vertical-align: top;
    height: 120px;
    width: 14.28%;
}

.kalender-container th {
    background-color: #2b5567;
    color: #ffffff;
    text-align: center;
    font-size: 16px;
    padding: 7px;
    height: 60px;
}

.kalender-container td {
    position: relative;
}

.kalender-container .event {
    font-size: 14px;
    margin: 5px 0;
    padding: 8px;
    background-color: #e2e6ea;
    border-left: 4px solid #2B5567;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.kalender-container .event:hover {
    background-color: #d4d8dd;
    transform: scale(1.02);
}

.kalender-container .event-container {
    margin-top: 10px;
}

.controls {
    margin: 20px 0;
    padding: 15px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.controls label {
    margin-right: 10px;
    font-weight: bold;
}

.controls select {
    margin-right: 20px;
}

#generate-pdf {
    padding: 10px 20px;
    background-color: #2B5567;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#generate-pdf:hover {
    background-color: #1e3e50;
}

/* Elivae blok voor linksboven */
#image-top-left {
    position: fixed;
    top: -50px; 
    left: -70px; 
    width: 270px; 
    height: auto;
    z-index: -1; 
}

/* Elivae blok voor rechtsonder */
#image-bottom-right {
    position: fixed;
    bottom: -50px; 
    right: -90px; 
    width: 270px; 
    height: auto;
    z-index: -1; 
}

/* Responsiviteit verbeteren */
@media (max-width: 768px) {
    .kalender-container th, .kalender-container td {
        padding: 8px;
        font-size: 12px;
    }
    .controls label, .controls select, #generate-pdf {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
    #generate-pdf {
        width: 100%;
    }
    #hidden-image-top-left,
    #hidden-image-bottom-right {
        width: 180px;
    }
}

.expiration-message {
    font-size: 14px;
    color: #ff0000;
}
