
#inclusio-form-wrapper {
    max-width: 500px;
    margin: 50px auto;
    padding: 30px;
    border-radius: 12px;
    background-color: #f9f9f9;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#inclusio-form input:not([type=checkbox]),
#inclusio-form button {
    width: 100%;
    padding: 12px 15px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

#inclusio-form input:focus {
    border-color: #1E2364;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0,123,255,0.2);
}

#inclusio-submit, #renew-btn {
    background-color: #1E2364;
    color: white;
    border: none;
    cursor: pointer;
}

#inclusio-submit:hover, #renew-btn:hover {
    background-color: #0056b3;
}

#renew-btn {
  width: 100%;
  padding: 12px 15px;
  margin: 10px 0;
  margin-top: 50px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s ease;
}

#inclusio-loading {
    text-align: center;
    padding: 40px 0;
}

#inclusio-loading button#cancel-btn {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #6c757d;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

#inclusio-loading button#cancel-btn:hover {
    background-color: #5a6268;
}

#inclusio-results {
    margin-top: 30px;
    text-align: center;
}

.circle-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.circle {
    position: relative;
    height: 150px;
    width: 150px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 22px;
    color: #fff;
}

.circle::before{
    content: "";
    position: absolute;
    height: 134px;
    width: 134px;
    border-radius: 50%;
    background-color: #fff;
}

.circle.green {
    background: conic-gradient(#28a745 0deg, #eaeaea 0deg);
    color: #28a745;
}

.circle.red {
    background: conic-gradient(#dc3545 0deg, #eaeaea 0deg);
    color: #dc3545;
}

.circle .percent {
    font-size: 28px;
    margin-bottom: 5px;
    z-index: 99;
}

.circle .label {
    font-size: 14px;
    font-weight: normal;
    z-index: 99;
}
