body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #5b5b5b;
}

.dashboard-container {
    display: flex;
    justify-content: space-between;
    padding: 20px;
}

.sidebar-left, .sidebar-right {
    width: 25%;
}


.sidebar-left, .sb-top {
    background-color: #efefef;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    
}

.main-content {
    width: 50%;
    background-color: #efefef;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background-color: #333;
    color: white;
}

input, select {
    width: 100%;
    padding: 10px;
}

ul {
    list-style: none;
    padding: 0;
}

h2 {
    color: #333;
    border-bottom: 2px solid #333;
    padding-bottom: 10px;
    margin-bottom: 20px;
}



.main-content .row {
    justify-content: space-between;
}

.slot {
    margin: 6px;
    border-radius: 7px;
}

.empty-slot {
    border: 2px dashed #ddd;    
    padding: 10px;
}

.col-week {
    width: 20%;
    border-right: 1px solid #aaa;
    padding: 6px;
    margin: 0;
}

.col-week h4 {
    padding-left: 6px;
    text-transform: uppercase;
    font-size: 13px;
}


.pcard .card-body {
    padding: 10px 13px;
}

.pcard h5.card-title {
    font-size: 16px;
    margin: 0px;
}

.pcard p.card-text {
    margin-top 3px;
    font-size: 12px;
}

.pcard.hoch {
    border-left: 6px solid #c80000;
}

.pcard.mittel {
    border-left: 6px solid #c8a400;
}

.pcard.rechnung .card-body {
    background: linear-gradient(45deg, #b4ddaeeb 0%, transparent 30%);
}

/* Status: Warten auf Rückmeldung */
.waiting {
    opacity: 0.5;
}

/* Status: An der Reihe */
.in-progress {
}


.main-content .text-muted {
    display: none;
}

.add-todo {
    display: flex;
}