.wp-days-row {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 8px;
    align-items: flex-start;
}

.wp-day-col {
    flex: 0 0 360px;
    min-width: 360px;
    background-color: #eef0f2;
    border-radius: 6px;
    padding-bottom: 8px;
}

.wp-day-header {
    font-weight: bold;
    text-align: center;
    padding: 8px;
    border-radius: 6px 6px 0 0;
    background-color: #343a40;
    color: #fff;
}

.wp-day-header.is-today {
    background-color: #007bff;
}

.wp-machine-block {
    margin: 8px;
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    overflow: hidden;
}

.wp-machine-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 10px;
    background-color: #f8f9fa;
    cursor: pointer;
    border-bottom: 1px solid #dee2e6;
    font-size: 13px;
}

.wp-machine-header:hover {
    background-color: #eef1f4;
}

.wp-machine-counts .badge {
    margin-left: 4px;
}

.wp-machine-body {
    background-color: #f4f5f7;
    padding: 8px;
}

.wp-entry-card {
    background-color: #fff;
    border: 1px solid #e2e5e9;
    border-radius: 6px;
    padding: 8px 10px;
    font-size: 12px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.wp-entry-card + .wp-entry-card {
    margin-top: 8px;
}

.wp-entry-card.is-carried-over {
    border-left: 3px solid #dc3545;
    background-color: #fff8f8;
}

.wp-entry-card.is-done {
    border-left: 3px solid #28a745;
    background-color: #f7fdf9;
}

.wp-entry-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 6px;
}

.wp-entry-title {
    font-weight: bold;
}

.wp-entry-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.wp-entry-action {
    color: #6c757d;
    background: none;
    border: none;
    padding: 0;
    line-height: 1;
    font-size: 13px;
}

.wp-entry-action:hover {
    color: #343a40;
}

.wp-entry-action.text-danger:hover {
    color: #dc3545 !important;
}

.wp-entry-meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px 14px;
    color: #666;
    margin-top: 6px;
}

.wp-meta-label {
    color: #999;
    margin-right: 4px;
}

.wp-entry-progress {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px dashed #e2e5e9;
}

.wp-entry-progress label {
    margin: 0;
    white-space: nowrap;
    color: #555;
}

.wp-entry-progress .wp-qty-input {
    width: 55px;
}

.wp-entry-progress .wp-of-total {
    white-space: nowrap;
    color: #555;
}

.wp-entry-progress .wp-note-input {
    flex: 1;
    min-width: 100px;
}

.wp-entry-static {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px dashed #e2e5e9;
}

.wp-empty-day {
    padding: 14px;
    text-align: center;
    color: #999;
    font-size: 12px;
}
