.dnnForm {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 6px;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

    /* HEADINGS */
    .dnnForm h4 {
        margin-top: 20px;
        color: #333;
    }

/* FORM LABELS */
.dnnFormItem label {
    display: block;
    font-weight: bold;
    margin-bottom: 6px;
    color: #333;
}

/* INPUT FIELDS */
.dnnFormInputBox,
.dnnFormInput {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 0.95em;
    box-sizing: border-box;
}

/* BUTTON STYLES */
.dnnPrimaryAction {
    background-color: #0073aa;
    color: #fff;
    border: none;
    padding: 8px 14px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
}

    .dnnPrimaryAction:hover {
        background-color: #005f8a;
    }

.dnnSecondaryAction {
    background-color: #eaeaea;
    color: #333;
    padding: 6px 12px;
    margin-bottom: 12px;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-weight: bold;
    transition: background 0.3s;
}

    .dnnSecondaryAction:hover {
        background-color: #d5d5d5;
    }

/* ADMIN REPEATER LIST */
.resourceEntry {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 12px 15px;
    margin-bottom: 12px;
    border-radius: 6px;
}

    .resourceEntry strong {
        font-size: 1.1em;
        display: block;
        margin-bottom: 6px;
    }

    .resourceEntry a {
        color: #0073aa;
        font-weight: bold;
        text-decoration: none;
    }

        .resourceEntry a:hover {
            text-decoration: underline;
        }


.closeFormBtn {
    background-color: #ff4d4f;
    color: #fff;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    font-weight: bold;
    margin-left: auto;
    transition: background 0.3s;
}

    .closeFormBtn:hover {
        background-color: #d9363e;
    }
