/* Blank page mode - hide normal UI using data attribute (works before JS) */
body[data-task-mode="true"] #app-header,
body[data-task-mode="true"] #sidebar,
body[data-task-mode="true"] #main-content,
body.task-link-mode #app-header,
body.task-link-mode #sidebar,
body.task-link-mode #main-content {
    display: none !important;
}

/* Blank page container */
#task-link-blank-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #ffffff;
    z-index: 1;
    display: none; /* Hidden by default, shown by inline script or JS */
    align-items: center;
    justify-content: center;
}

/* Show blank page if data attribute is set */
body[data-task-mode="true"] #task-link-blank-page {
    display: flex !important;
}

/* Home button */
.task-link-home-button {
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    background-color: #263678;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    font-family: 'Inter', sans-serif;
}

.task-link-home-button:hover {
    background-color: #1e2a5e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.task-link-home-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
