.pdf-viewer-container {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pdf-controls {
    background: #f8f9fa;
    padding: 10px;
    border-bottom: 1px solid #ddd;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.pdf-btn {
    background: #007bff;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 12px;
}

.pdf-btn:hover {
    background: #0056b3;
}

.pdf-btn:disabled {
    background: #6c757d;
    cursor: not-allowed;
}

#page-info, #zoom-level {
    font-size: 12px;
    font-weight: bold;
    color: #333;
}

#pdf-canvas {
    max-width: 100%;
    max-height: calc(100vh - 200px);
    object-fit: contain;
}

.pdf-canvas-container {
    flex: 1;
    overflow: auto;
    text-align: center;
    padding: 10px;
}

/*Toast Notification CSS*/

 .custom-toast {
     position: fixed;
     top: 20px;
     right: 20px;
     min-width: 300px;
     background: white;
     border-radius: 8px;
     box-shadow: 0 4px 12px rgba(0,0,0,0.15);
     z-index: 9999;
     animation: slideInRight 0.3s ease-out;
     border-left: 4px solid #28a745;
 }

.toast-success {
    border-left-color: #28a745;
}

.toast-error {
    border-left-color: #dc3545;
}

.toast-content {
    display: flex;
    align-items: center;
    padding: 15px;
}

.toast-icon {
    font-size: 20px;
    margin-right: 10px;
}

.toast-message {
    flex: 1;
    font-weight: 500;
    color: #333;
}

.toast-close {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #999;
    margin-left: 10px;
}

.toast-close:hover {
    color: #666;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Highlighted links */
.highlighted-link {
    color: #0d6efd;
    font-weight: 500;
    text-decoration: underline;
    text-decoration-color: rgba(13, 110, 253, 0.35);
    text-underline-offset: 2px;
    transition: color .15s, text-decoration-color .15s;
}
.highlighted-link:hover {
    color: #0a58ca;
    text-decoration-color: #0a58ca;
}

/* Description typography */
.task-description-content {
    font-size: 0.875rem;
    line-height: 1.75;
    color: var(--falcon-gray-800);
}
.task-description-content ol,
.task-description-content ul {
    padding-left: 1.25rem;
    margin-bottom: 0.5rem;
}
.task-description-content li {
    margin-bottom: 0.25rem;
}
.task-description-content p {
    margin-bottom: 0.5rem;
}
.task-description-content p:last-child {
    margin-bottom: 0;
}