/* Styling for Membership section */
.pmpro_buddypass_membership.pmpro_box {
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 15px;
    margin: 20px;
    background-color: #fff;
}

.pmpro_form_heading.pmpro_font-large {
    font-size: 1.5em;
	line-height: 1.5em; /* This sets the line height */
    margin: 0px;
	padding: 0px;
}

.pmpro_level_info {
    font-size: 1.5em;
    margin-bottom: 8px;
}

.pmpro_manage_links a {
    text-decoration: none;
	font-size: 0.8em;
    color: #0073aa;
}

.pmpro_manage_links a:hover {
    text-decoration: underline;
}

.pmpro_level_description {
    font-size: 1em;
    margin-top: 8px;
}

/* Styling for Licensing form */
.licensing_form {
    display: grid;
    grid-template-columns: 0.4fr 1.6fr;
    gap: 10px;
    align-items: center;
}

.licensing_form .form-group {
    display: contents;
}

.licensing_form .form-group label {
    text-align: left;
    padding-right: 10px;
}

.licensing_form .form-group input[type="text"] {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
}

.update-button-wrapper {
    text-align: right;
    margin-top: 10px;
}

.update-button-wrapper input[type="submit"] {
    padding: 8px 16px;
    background-color: #0073aa;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.update-button-wrapper input[type="submit"]:hover {
    background-color: #005f8d;
}

/* Styling for NT8 Machine ID field */
.nt8_machine_id_form {
    display: grid;
    grid-template-columns: 0.4fr 1.6fr;
    gap: 10px;
    align-items: center;
}

.nt8_machine_id_form label {
    text-align: left;
    padding-right: 10px;
}

.nt8_machine_id_form input[type="text"] {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
}

.nt8_machine_id_form .update-button-wrapper {
    text-align: right;
    grid-column: span 2;
    margin-top: 10px;
}

.nt8_machine_id_form .update-button-wrapper input[type="submit"] {
    padding: 8px 16px;
    background-color: #0073aa;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.nt8_machine_id_form .update-button-wrapper input[type="submit"]:hover {
    background-color: #005f8d;
}

/* Styling for Downloads tab */
.custom_download_category_heading {
    font-size: 1.5em;
    margin-top: 24px;
    margin-bottom: 16px;
}

.custom_download_item {
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 10px;
    margin-bottom: 16px;
    overflow: hidden;
    background-color: #fff;
    display: flex;
    align-items: flex-start;
}

.custom_download_thumbnail {
    margin-right: 16px;
}

.custom_download_details {
    overflow: hidden;
}

.custom_download_title {
    font-size: 16px;
	font-weight: bold;
    margin-bottom: 5px;
}

.custom_download_versions {
    list-style-type: none;
    padding: 0;
}

.custom_download_version {
    margin-bottom: 4px;
}

.custom_download_version a {
    text-decoration: none;
    color: #0073aa;
}

.custom_download_version a:hover {
    text-decoration: underline;
}