        :root {
            --progress-value: 0%;
        }

        .circular-progress {
            width: 150px;
            height: 150px;
            aspect-ratio: 1 / 1;
            border-radius: 50%;
            background: conic-gradient(#003d99 var(--progress-value), #ddd 0deg);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: auto;
            flex-shrink: 0;
        }

        .inner-circle {
            width: 120px;
            height: 120px;
            aspect-ratio: 1 / 1;

            border-radius: 50%;
            background: white;

            display: flex;
            align-items: center;
            justify-content: center;
        }

        #divEstadisticas {
            display: flex;
            flex-direction: column;
        }

        #contenedor {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        #contenedor article {
            justify-content: center;
            align-items: center;
        }

        /*---------------------------------------------------------------------------------------------------------------------------------------------*/
        body {
            font-family: Arial, Helvetica, sans-serif;
            background-color: #f4f6f9;
            margin: 0;
        }

        div {
            box-sizing: border-box;
            margin: 2rem;
        }

        .card {
            background-color: white;
            max-width: 800px;
            margin: 20px auto;
            padding: 20px;
            border-radius: 10px;
            border: 1px solid #d6d6d6;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        h2 {
            color: #003d99;
            border-bottom: 2px solid #003d99;
            padding-bottom: 10px;
        }

        h2,
        #pBienvenidaPostulante {
            color: #003d99;
        }


        label {
            display: block;
            margin-top: 10px;
            margin-bottom: 5px;
            font-weight: bold;
        }

        input[type="text"],
        input[type="password"],
        input[type="number"],
        select {
            width: 100%;
            padding: 8px;
            border: 1px solid #ccc;
            border-radius: 5px;
        }

        input[type="button"] {
            background-color: #003d99;
            color: white;
            border: none;
            padding: 10px 15px;
            border-radius: 5px;
            cursor: pointer;
            margin-top: 10px;
        }

        input[type="button"]:hover {
            opacity: 0.9;
        }

        table {
            width: 100%;
            border-collapse: collapse;
        }

        th,
        td {
            border: 1px solid #ddd;
            padding: 8px;
        }

        th {
            background-color: #2c3e50;
            color: white;
        }

        tr:nth-child(even) {
            background-color: #f2f2f2;
        }