body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: #f5f7ff;
    margin: 0;
    padding: 20px;
    color: #333;
    min-height: 100vh;
    /* Optional: add a subtle pattern overlay */
    position: relative;
}

body::before {
    content: none;
}

.container {
    position: relative;
    z-index: 1;
    width: calc(100% - 32px);
    margin: 0 16px;
    background: #f5f7ff;
    padding: 6px 0 20px 0;
    border-radius: 4px;
    box-shadow: 0 4px 24px 0 rgba(80, 110, 255, 0.07);
}

h1 {
    color: #2a2a2a;
    text-align: center;
}

#task-form {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0px;
    position: sticky;
    top: 0;
    background: #f5f7ff;
    z-index: 9;
    padding: 12px 0;
    border-bottom: 1px solid #e8f2ff;
}

#task-form input, #task-form select {
    padding: 10px;
    margin: 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 13px;
    box-sizing: border-box;
}

#task-form input::placeholder {
    color: #ccc;
    opacity: 1;
}

#task-form textarea {
    resize: vertical;
    min-height: 40px;
    font-family: inherit;
    width: 100%;
    min-width: 300px;
}

#task-form button {
    background: linear-gradient(135deg, #8e7bff 0%, #7169e0 100%);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    padding: 4px 16px;
    height: 42px;
    transition: all 0.2s ease;
    margin-right: 8px;
}

#task-form button:hover {
    background: linear-gradient(135deg, #7a6bff 0%, #5f58d0 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(142, 123, 255, 0.3);
}

#cancel-edit-btn {
    padding: 4px 16px;
    border: 1px solid #dc3545;
    background-color: #fff;
    color: #dc3545;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    height: 42px;
    margin-left: 10px;
    margin-right: 8px;
}

#cancel-edit-btn:hover {
    background-color: #dc3545;
    color: white;
}

.task-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 15px 15px 15px;
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
    background: #fffbe6;
    border-radius: 4px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.03);
    border: 1px solid #f3e9c7;
    position: relative;
    transition: box-shadow 0.2s, transform 0.2s, opacity 0.2s;
}

.task-item:last-child {
    border-bottom: none;
}

.task-item .task-number {
    position: absolute;
    bottom: 8px;
    right: 12px;
    font-size: 11px;
    font-weight: 600;
    color: #6c757d;
    background: rgba(255, 255, 255, 0.9);
    padding: 2px 6px;
    border-radius: 4px;
    border: 1px solid #e9ecef;
    letter-spacing: 0.5px;
    transition: opacity 0.2s ease;
}

.task-item:hover .task-number {
    opacity: 0;
}

.task-item .details {
    flex-grow: 1;
    margin-top: 8px;
}

.task-item .task-name {
    font-weight: 500;
    margin-bottom: 4px;
}

.task-item .task-assigned {
    font-size: 0.8em;
    color: #555;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-weight: 400;
}

.task-item .assigned-line {
    font-size: 0.8em;
    font-weight: 400;
}

.task-item .task-status {
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8em;
    background-color: #eee;
    color: #333;
    min-width: 80px;
    text-align: center;
}

.task-item .actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    opacity: 0;
    transition: opacity 0.2s ease;
    position: absolute;
    bottom: 8px;
    right: 12px;
}

.task-item:hover .actions {
    opacity: 1;
}

.task-item .actions button.edit-btn,
.task-item .actions button.delete-btn {
    background: linear-gradient(135deg, #8e7bff 0%, #7169e0 100%);
    border: none;
    border-radius: 4px;
    padding: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
}

.task-item .actions button.edit-btn:hover,
.task-item .actions button.delete-btn:hover {
    background: linear-gradient(135deg, #7169e0 0%, #5f54c7 100%);
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(122, 110, 233, 0.15);
}

.task-item .actions button.edit-btn svg,
.task-item .actions button.delete-btn svg {
    height: 14px;
    transition: transform 0.2s ease;
    color: #fff;
    stroke: #fff;
}

.task-item .actions button.edit-btn:hover svg,
.task-item .actions button.delete-btn:hover svg {
    transform: scale(1.1);
}

.task-item .actions svg {
    display: block;
    width: 15px;
    height: 15px;
    pointer-events: none;
}

.task-lanes {
    display: flex;
    gap: 10px;
    margin-top: 0;
    justify-content: space-between;
    width: 100%;
    padding: 0;
    margin-left: auto;
    margin-right: auto;
}

.lane {
    flex: 1 1 0;
    background: #fff;
    border-radius: 4px;
    padding: 10px;
    min-width: 200px;
    box-shadow: 0 1px 6px rgba(80,110,255,0.06);
    display: flex;
    flex-direction: column;
    border: 1px solid #d1dbfa;
}

.lane h2 {
    text-align: center;
    font-size: 0.85em;
    margin: 0 0 8px 0;
    color: #007bff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 8px 6px;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 100%);
    border-radius: 4px;
    border: 1px solid #d1dbfa;
    box-shadow: 0 1px 3px rgba(80, 110, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.lane h2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #007bff, #6a8dff, #007bff);
    background-size: 200% 100%;
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Custom colors for each status */
.lane[data-status="To Do"] h2 {
    background: #e6e0ff !important;
    border-color: #ced4da;
    color: #6c757d;
}

.lane[data-status="To Do"] h2::before {
    background: linear-gradient(90deg, #6c757d, #adb5bd, #6c757d);
}

.lane[data-status="In Progress"] h2 {
    background: linear-gradient(135deg, #fff8e6 0%, #ffe8c6 100%);
    border-color: #ffd8a8;
    color: #fd7e14;
}

.lane[data-status="In Progress"] h2::before {
    background: linear-gradient(90deg, #fd7e14, #ffa726, #fd7e14);
}

.lane[data-status="Review"] h2 {
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
    border-color: #b3d9ff;
    color: #17a2b8;
}

.lane[data-status="Review"] h2::before {
    background: linear-gradient(90deg, #17a2b8, #4fc3f7, #17a2b8);
}

.lane[data-status="Hold"] h2 {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
    border-color: #ffd1d1;
    color: #dc3545;
}

.lane[data-status="Hold"] h2::before {
    background: linear-gradient(90deg, #dc3545, #ff6b6b, #dc3545);
}

.lane[data-status="Done"] h2 {
    background: linear-gradient(135deg, #f0fff4 0%, #e6ffe6 100%);
    border-color: #b8e6b8;
    color: #28a745;
}

.lane[data-status="Done"] h2::before {
    background: linear-gradient(90deg, #28a745, #66bb6a, #28a745);
}

.lane-tasks {
    flex: 1;
    min-height: 40px;
}

@media (max-width: 900px) {
    .task-lanes {
        flex-direction: column;
        gap: 24px;
        width: 100%;
        padding: 0;
    }
    .lane {
        max-height: none;
        min-width: 0;
    }
}

.main-header {
    background-color: #B9C4E0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25'%3E%3Cdefs%3E%3ClinearGradient id='a' gradientUnits='userSpaceOnUse' x1='0' x2='0' y1='0' y2='100%25' gradientTransform='rotate(240)'%3E%3Cstop offset='0' stop-color='%23B9C4E0'/%3E%3Cstop offset='1' stop-color='%237169E0'/%3E%3C/linearGradient%3E%3Cpattern patternUnits='userSpaceOnUse' id='b' width='540' height='450' x='0' y='0' viewBox='0 0 1080 900'%3E%3Cg fill-opacity='0.1'%3E%3Cpolygon fill='%23444' points='90 150 0 300 180 300'/%3E%3Cpolygon points='90 150 180 0 0 0'/%3E%3Cpolygon fill='%23AAA' points='270 150 360 0 180 0'/%3E%3Cpolygon fill='%23DDD' points='450 150 360 300 540 300'/%3E%3Cpolygon fill='%23999' points='450 150 540 0 360 0'/%3E%3Cpolygon points='630 150 540 300 720 300'/%3E%3Cpolygon fill='%23DDD' points='630 150 720 0 540 0'/%3E%3Cpolygon fill='%23444' points='810 150 720 300 900 300'/%3E%3Cpolygon fill='%23FFF' points='810 150 900 0 720 0'/%3E%3Cpolygon fill='%23DDD' points='990 150 900 300 1080 300'/%3E%3Cpolygon fill='%23444' points='990 150 1080 0 900 0'/%3E%3Cpolygon fill='%23DDD' points='90 450 0 600 180 600'/%3E%3Cpolygon points='90 450 180 300 0 300'/%3E%3Cpolygon fill='%23666' points='270 450 180 600 360 600'/%3E%3Cpolygon fill='%23AAA' points='270 450 360 300 180 300'/%3E%3Cpolygon fill='%23DDD' points='450 450 360 600 540 600'/%3E%3Cpolygon fill='%23999' points='450 450 540 300 360 300'/%3E%3Cpolygon fill='%23999' points='630 450 540 600 720 600'/%3E%3Cpolygon fill='%23FFF' points='630 450 720 300 540 300'/%3E%3Cpolygon points='810 450 720 600 900 600'/%3E%3Cpolygon fill='%23DDD' points='810 450 900 300 720 300'/%3E%3Cpolygon fill='%23AAA' points='990 450 900 600 1080 600'/%3E%3Cpolygon fill='%23444' points='990 450 1080 300 900 300'/%3E%3Cpolygon fill='%23222' points='90 750 0 900 180 900'/%3E%3Cpolygon points='270 750 180 900 360 900'/%3E%3Cpolygon fill='%23DDD' points='270 750 360 600 180 600'/%3E%3Cpolygon points='450 750 540 600 360 600'/%3E%3Cpolygon points='630 750 540 900 720 900'/%3E%3Cpolygon fill='%23444' points='630 750 720 600 540 600'/%3E%3Cpolygon fill='%23AAA' points='810 750 720 900 900 900'/%3E%3Cpolygon fill='%23666' points='810 750 900 600 720 600'/%3E%3Cpolygon fill='%23999' points='990 750 900 900 1080 900'/%3E%3Cpolygon fill='%23999' points='180 0 90 150 270 150'/%3E%3Cpolygon fill='%23444' points='360 0 270 150 450 150'/%3E%3Cpolygon fill='%23FFF' points='540 0 450 150 630 150'/%3E%3Cpolygon points='900 0 810 150 990 150'/%3E%3Cpolygon fill='%23222' points='0 300 -90 450 90 450'/%3E%3Cpolygon fill='%23FFF' points='0 300 90 150 -90 150'/%3E%3Cpolygon fill='%23FFF' points='180 300 90 450 270 450'/%3E%3Cpolygon fill='%23666' points='180 300 270 150 90 150'/%3E%3Cpolygon fill='%23222' points='360 300 270 450 450 450'/%3E%3Cpolygon fill='%23FFF' points='360 300 450 150 270 150'/%3E%3Cpolygon fill='%23444' points='540 300 450 450 630 450'/%3E%3Cpolygon fill='%23222' points='540 300 630 150 450 150'/%3E%3Cpolygon fill='%23AAA' points='720 300 630 450 810 450'/%3E%3Cpolygon fill='%23666' points='720 300 810 150 630 150'/%3E%3Cpolygon fill='%23FFF' points='900 300 810 450 990 450'/%3E%3Cpolygon fill='%23999' points='900 300 990 150 810 150'/%3E%3Cpolygon points='0 600 -90 750 90 750'/%3E%3Cpolygon fill='%23666' points='0 600 90 450 -90 450'/%3E%3Cpolygon fill='%23AAA' points='180 600 90 750 270 750'/%3E%3Cpolygon fill='%23444' points='180 600 270 450 90 450'/%3E%3Cpolygon fill='%23444' points='360 600 270 750 450 750'/%3E%3Cpolygon fill='%23999' points='360 600 450 450 270 450'/%3E%3Cpolygon fill='%23666' points='540 600 630 450 450 450'/%3E%3Cpolygon fill='%23222' points='720 600 630 750 810 750'/%3E%3Cpolygon fill='%23FFF' points='900 600 810 750 990 750'/%3E%3Cpolygon fill='%23222' points='900 600 990 450 810 450'/%3E%3Cpolygon fill='%23DDD' points='0 900 90 750 -90 750'/%3E%3Cpolygon fill='%23444' points='180 900 270 750 90 750'/%3E%3Cpolygon fill='%23FFF' points='360 900 450 750 270 750'/%3E%3Cpolygon fill='%23AAA' points='540 900 630 750 450 750'/%3E%3Cpolygon fill='%23FFF' points='720 900 810 750 630 750'/%3E%3Cpolygon fill='%23222' points='900 900 990 750 810 750'/%3E%3Cpolygon fill='%23222' points='1080 300 990 450 1170 450'/%3E%3Cpolygon fill='%23FFF' points='1080 300 1170 150 990 150'/%3E%3Cpolygon points='1080 600 990 750 1170 750'/%3E%3Cpolygon fill='%23666' points='1080 600 1170 450 990 450'/%3E%3Cpolygon fill='%23DDD' points='1080 900 1170 750 990 750'/%3E%3C/g%3E%3C/pattern%3E%3C/defs%3E%3Crect x='0' y='0' fill='url(%23a)' width='100%25' height='100%25'/%3E%3Crect x='0' y='0' fill='url(%23b)' width='100%25' height='100%25'/%3E%3C/svg%3E");
    background-attachment: fixed;
    background-size: cover;
    color: white;
    padding: 25px 0;
    text-align: center;
    position: relative;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 10px;
    border-radius: 4px;
    margin-left: 16px;
    margin-right: 16px;
}

.main-header h1 {
    margin: 0;
    font-size: 48px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 2px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
    color: white;
    position: relative;
}

.main-header h1::after {
    content: '';
    display: block;
    margin: 10px auto 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #8e7bff, #a77cf2);
    border-radius: 2px;
    box-shadow: 0 0 10px #a77cf2;
}

.filter-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0px;
    padding: 0 0 0 8px;
}

.filter-bar label {
    font-weight: 500;
    color: #3a3a3a;
    font-size: 0.85rem;
    line-height: 1;
    margin: 0;
    display: flex;
    align-items: center;
}

.filter-bar select {
    padding: 7px 14px;
    border-radius: 4px;
    border: 1px solid #b8c6ff;
    font-size: 13px;
    background: #fff;
    color: #333;
    vertical-align: middle;
    margin: 0;
    display: flex;
    align-items: center;
}

.refresh-btn {
    background: #fff;
    color: #6a8dff;
    border: 1px solid #b8c6ff;
    border-radius: 4px;
    padding: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px 0 rgba(80, 110, 255, 0.07);
    margin-left: auto;
    margin-right: 8px;
}

.refresh-btn:hover {
    background: #f5f7ff;
    color: #4a6bff;
}

.refresh-btn:active {
    transform: scale(0.95);
}

.login-modal {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.login-modal-content {
    background: #f5f7ff;
    border-radius: 4px;
    box-shadow: 0 2px 12px 0 rgba(80, 110, 255, 0.07);
    padding: 32px 24px 24px 24px;
    text-align: center;
    min-width: 320px;
}

.login-modal-content h2 {
    margin-bottom: 18px;
    color: #6a8dff;
}

#login-form input {
    width: 90%;
    margin-bottom: 14px;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #b8c6ff;
    font-size: 1rem;
}

#login-form button {
    background: linear-gradient(135deg, #8e7bff 0%, #7169e0 100%);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    padding: 10px 20px;
    transition: all 0.2s ease;
}

#login-form button:hover {
    background: linear-gradient(135deg, #7a6bff 0%, #5f58d0 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(142, 123, 255, 0.3);
}

.login-error {
    color: #dc3545;
    margin-top: 10px;
    min-height: 20px;
}

.logout-dropdown, .logout-dropdown::before { display: none !important; }

.logout-btn {
    width: 100px;
    background: #fff;
    color: #6a8dff;
    border: 1px solid #b8c6ff;
    border-radius: 4px;
    padding: 6px 0;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    transition: background 0.15s, color 0.15s;
    margin-top: 6px;
    box-shadow: 0 2px 8px 0 rgba(80, 110, 255, 0.07);
}
.logout-btn:hover {
    background: #f5f7ff;
    color: #dc3545;
}
.user-info {
    position: relative;
    right: 0;
    margin-left: auto;
    background: #fff;
    color: #6a8dff;
    border: 1px solid #b8c6ff;
    border-radius: 4px;
    padding: 4px 18px 4px 32px;
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    z-index: 10;
    box-shadow: 0 2px 8px 0 rgba(80, 110, 255, 0.07);
    display: flex;
    align-items: center;
    min-height: 32px;
    white-space: nowrap;
}
.user-info .user-icon {
    display: inline-block;
    margin-right: 8px;
    width: 18px;
    height: 18px;
    vertical-align: middle;
}

.body-blur .container,
.body-blur .main-header,
.body-blur .filter-bar {
    filter: blur(3px) grayscale(0.2) brightness(0.8);
    pointer-events: none;
    user-select: none;
    opacity: 0.5;
}

.change-password-btn {
    width: 140px;
    background: #fff;
    color: #6a8dff;
    border: 1px solid #b8c6ff;
    border-radius: 4px;
    padding: 6px 0;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    transition: background 0.15s, color 0.15s;
    box-shadow: 0 2px 8px 0 rgba(80, 110, 255, 0.07);
}
.change-password-btn:hover {
    background: #f5f7ff;
    color: #6a8dff;
}
#change-password-modal .login-modal-content {
    min-width: 320px;
}
#close-change-password {
    background: linear-gradient(135deg, #8e7bff 0%, #7169e0 100%);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    padding: 10px 20px;
    transition: all 0.2s ease;
    min-width: 100px;
    width: 120px;
    margin-top: 0;
}
#close-change-password:hover {
    background: linear-gradient(135deg, #7a6bff 0%, #5f58d0 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(142, 123, 255, 0.3);
}

.user-block {
    position: absolute;
    top: 16px;
    right: 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    z-index: 12;
}

.user-menu {
    position: relative;
    margin-top: 6px;
}

.user-menu-btn {
    background: #fff;
    color: #6a8dff;
    border: 1px solid #b8c6ff;
    border-radius: 4px;
    padding: 8px 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px 0 rgba(80, 110, 255, 0.07);
    font-size: 14px;
    font-weight: 500;
    min-width: 80px;
}

.user-menu-btn:hover {
    background: #f5f7ff;
    color: #4a6bff;
    transform: scale(1.02);
}

.user-menu-btn svg {
    transition: transform 0.2s ease;
}

.user-menu-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    border: 1px solid #b8c6ff;
    border-radius: 4px;
    box-shadow: 0 4px 16px rgba(80, 110, 255, 0.15);
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 1000;
    margin-top: 4px;
}

.user-menu-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.menu-item {
    display: block;
    width: 100%;
    padding: 10px 16px;
    background: none;
    border: none;
    text-align: left;
    color: #6a8dff;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.menu-item:first-child {
    border-radius: 4px 4px 0 0;
}

.menu-item:last-child {
    border-radius: 0 0 4px 4px;
}

.menu-item:hover {
    background: #f5f7ff;
    color: #4a6bff;
}

.menu-item:active {
    background: #e8f2ff;
}

.task-monthyear {
    font-size: 0.6em;
    color: #888;
    margin-top: 2px;
    margin-left: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.button-group {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 10px;
}

.button-group button {
    background: linear-gradient(135deg, #8e7bff 0%, #7169e0 100%);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    padding: 10px 20px;
    transition: all 0.2s ease;
    min-width: 100px;
    width: 120px;
}

.button-group button:hover {
    background: linear-gradient(135deg, #7a6bff 0%, #5f58d0 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(142, 123, 255, 0.3);
}

#change-password-form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
}

#change-password-form button {
    background: linear-gradient(135deg, #8e7bff 0%, #7169e0 100%);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    padding: 10px 20px;
    transition: all 0.2s ease;
    min-width: 100px;
    width: 120px;
}

#change-password-form button:hover {
    background: linear-gradient(135deg, #7a6bff 0%, #5f58d0 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(142, 123, 255, 0.3);
}

#assigned-input {
    color: #333;
}

#assigned-input[style*="display: none"] {
    margin: 0;
    padding: 0;
    width: 0;
    height: 0;
    border: none;
    overflow: hidden;
}

.custom-shape-divider-bottom-1750539592 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-bottom-1750539592 svg {
    position: relative;
    display: block;
    width: calc(122% + 1.3px);
    height: 138px;
    transform: rotateY(180deg);
}

.custom-shape-divider-bottom-1750539592 .shape-fill {
    fill: #FFFFFF;
}

#add-task-btn {
    padding: 4px 16px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    height: 42px;
    margin-left: 10px;
    margin-right: 8px;
}

.drag-over {
    background: #e0e7ff !important;
    border: 2px dashed #6366f1;
    transition: background 0.2s, border 0.2s;
}

.task-item.dragging {
    opacity: 0.5;
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
    transform: scale(1.04);
    z-index: 1000;
}

.task-priority {
    font-size: 0.85em;
    font-weight: bold;
    margin-top: 4px;
    padding: 2px 8px;
    border-radius: 4px;
    display: inline-block;
}

.priority-critical {
    background: #ffebee;
    color: #c62828;
    border: 1px solid #c62828;
}

.priority-standard {
    background: #e3f2fd;
    color: #1565c0;
    border: 1px solid #1565c0;
}

.priority-low {
    background: #f9fbe7;
    color: #9e9d24;
    border: 1px solid #9e9d24;
}

.filter-total-label {
    font-weight: 500;
    color: #3a3a3a;
    font-size: 0.85rem;
    line-height: 1;
    margin: 0;
    display: flex;
    align-items: center;
}

.task-daysinlane {
    display: block !important;
    color: #555 !important;
    font-size: 0.8em !important;
    font-weight: 500;
    margin: 1px 0 0 0;
}

.task-daysinlane span {
    color: #555 !important;
    font-size: 0.8em !important;
    font-weight: 500;
    opacity: 1;
}

.task-item:hover .task-daysinlane {
    display: none !important;
} 