/* Container */
.group-container {
    width: 60%;
    margin: 50px auto;
    border: 1px solid #ddd;
    border-radius: 8px;  
    font-family: Arial, sans-serif;
}

/* Heading */
.group-create-heading {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

/* Step indicator */
.step-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    font-weight: bold;
    height: 50px;
    background-color: lightgray;
}

.step-indicator .step-completed {
    color: black;
}

.step-indicator .step-active {
    color: red;
    margin: 0 10px;
}

.step-indicator .step-separator {
    margin: 0 10px;
    color: black;
}

/* Form */
.group-form .form-group {
    margin-bottom: 20px;
    padding: 0px 95px 0px 95px;
}

.form-buttons

.group-form .form-label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.group-form .form-input {
    width: 100%;
    padding: 8px 10px;
    border-radius: 4px;
    border: 1px solid #ccc;
}


/* Buttons */
.form-buttons {
    display: flex;
    padding: 0px 95px 0px 95px;
    justify-content: space-between;
}

.btn-submit {
    padding: 8px 16px;
    background-color: green;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.btn-submit:hover {
    background-color: red;
}

/* Radio buttons */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.radio-label {
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: normal;
}

.radio-label input[type="radio"] {
    transform: scale(1.2);
    cursor: pointer;
}

.step-2-headings{
    border-bottom: solid 1px #ccc;
    padding-bottom: 20px;
}

.radio-description-list {
    list-style-type: disc; 
    margin-left: 40px;
    padding-left: 0;
    color: #555;
    font-size: 15px;
}

.radio-description-list-item{
    margin-bottom: 5px;
}

/* List stle*/
.group-item{
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 10px;
    text-decoration: none !important;
    color: inherit;
    display: block;
}

.group-number {
    display: flex;
}

a{
    text-decoration: none;
    transition: 0.7s
}

a:hover{
    color: red
}

.group-info-desc{
    display: grid;
    padding-left: 50px;
}

.group-setting-button {
    display: flex;
    justify-content: space-evenly;
}

