
        .circular-progress {
            position: relative;
            height: 150px;
            width: 150px;
            border-radius: 50%;
            background: conic-gradient(#43afbb 0deg, #e0e0e0 0deg);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 20px auto;
        }
        
        .circular-progress::before {
            content: "";
            position: absolute;
            height: 130px;
            width: 130px;
            border-radius: 50%;
            background-color: white;
        }
        
        .progress-value {
            position: relative;
            font-size: 20px;
            font-weight: bold;
            color: #43afbb;
            z-index: 2;
        }
        
        .inner-circle {
            position: absolute;
            z-index: 1;
            height: 140px;
            width: 140px;
            border-radius: 50%;
            background-color: white;
        }

        .verify-btn {
            background-color: #43afbb;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            font-size: 16px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .verify-btn:hover {
            background-color: #3a99a4;
        }

        .status-text {
            margin-top: 15px;
            color: #666;
            text-align: center;
        }

        .infoimg img {
            max-width: 100px;
            border-radius: 8px;
        }
