/* zabezpiecz_telefon.css */
.secure-phone-container {
    max-width: 700px;
    margin: 0 auto;
    color: #1f2937;
    padding: 1rem;
}

.progress-card {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.progress-bar-bg {
    width: 100%;
    height: 12px;
    background: #e5e7eb;
    border-radius: 6px;
    margin: 1rem 0;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    width: 0%;
    background: #10b981;
    border-radius: 6px;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.checklist-group {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.group-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #10b981;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.task-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid #f3f4f6;
    transition: background 0.2s;
}

.task-item:last-child {
    border-bottom: none;
}

.task-item:hover {
    background: #f9fafb;
}

.radio-check {
    width: 24px;
    height: 24px;
    border: 2px solid #d1d5db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.2s;
    margin-top: 2px;
}

.radio-check i {
    opacity: 0;
    transform: scale(0);
    transition: all 0.2s;
    font-size: 0.8rem;
    color: #fff;
}

.task-item.completed .radio-check {
    background: #10b981;
    border-color: #10b981;
}

.task-item.completed .radio-check i {
    opacity: 1;
    transform: scale(1);
}

.task-content h4 {
    margin: 0 0 0.3rem 0;
    font-size: 1rem;
    color: #111827;
}

.task-content p {
    margin: 0;
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.4;
}

.task-item.completed h4 {
    text-decoration: line-through;
    opacity: 0.7;
}

.reset-btn {
    display: block;
    margin: 2rem auto;
    background: transparent;
    border: 1px solid rgba(239, 68, 68, 0.5);
    color: #ef4444;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
}

.reset-btn:hover {
    background: rgba(239, 68, 68, 0.1);
}