
.technical-page {
    background: #f8fafc;
    min-height: 100vh;
    padding: 2rem 0 3rem 0;
}

.page-topbar {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 18px;
    padding: 14px 18px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.05);
}

.page-topbar .back-link {
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.page-topbar .back-link:hover {
    color: #0d6efd;
}

.page-topbar .current-page {
    color: #0f172a;
    font-weight: 600;
}

.section-card {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 22px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
    overflow: hidden;
}

.section-card-header {
    padding: 0.2rem 0.5rem;
    border-bottom: 1px solid #eef2f7;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    text-align: center;
}

.section-card-header h2 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 700;
    color: #0d6efd;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.section-card-body {
    padding: 0.95rem 1.25rem 1.25rem;
}

.technical-item {
    padding: 1.5rem;
    margin: 0;
    background: #fbfdff;
    border: 1px solid #e8eef5;
    border-radius: 18px;
    transition: all 0.25s ease;
}

.technical-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
}

.technical-title {
    font-size: 1.12rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.85rem;
    line-height: 1.5;
}

.technical-title span {
    color: #0d6efd;
}

.technical-description {
    color: #334155;
    line-height: 1.75;
    font-size: 1rem;
    margin-bottom: 1.25rem;
}

.technical-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn-soft-primary {
    background: #eff6ff;
    color: #0d6efd;
    border: 1px solid #cfe2ff;
    border-radius: 12px;
    padding: 10px 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-soft-primary:hover {
    background: #dbeafe;
    color: #0b5ed7;
}

.btn-soft-danger {
    background: #fff1f2;
    color: #dc3545;
    border: 1px solid #f5c2c7;
    border-radius: 12px;
    padding: 10px 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-soft-danger:hover {
    background: #ffe4e6;
    color: #bb2d3b;
}

.pdf-container {
    max-height: 75vh;
    overflow-y: auto;
    background: #f8fafc;
    border-radius: 14px;
    padding: 1rem;
}

.modal-content {
    border-radius: 20px;
    border: none;
    overflow: hidden;
}

.modal-header {
    border-bottom: 1px solid #eef2f7;
    background: #ffffff;
}

@media (max-width: 768px) {
    .technical-page {
        padding-top: 1rem;
    }

    .section-card-header h2 {
        font-size: 1.2rem;
    }

    .technical-item {
        margin: 1rem;
        padding: 1rem;
    }

    .technical-actions {
        flex-direction: column;
    }

    .technical-actions a {
        width: 100%;
        text-align: center;
    }
}