/*********************************************************** For Extensions Page ********************************************************/
.ph-logo-container .ph_fedex_logo_header {
    display: block;
	text-align: center;
}

.ph-logo-container .ph_fedex_logo_header .ph_logo {
    width: 250px;
	height: 50px;
}

.ph_fedex_logo_header .plugin_name {
    font-weight: 550;
}

.ph-ext-container {
    font-family: Arial, sans-serif;
}

.ph-ext-container h1,
.ph-ext-container h2 {
    text-align: center;
    margin: 20px 10px;
    color: #1e1e59;
    line-height: 1.2;
}

.ph-ext-container h2 {
    font-size: 20px;
}

.ph-ext-promo-plugins h1,
.ph-ext-promo-plugins h2 {
    text-align: center;
    color: #b0006d;
    margin-bottom: 20px;
}

/* Extensible plugin blocks */
.ph-ext-promo-block,
.ph-suggestive-ext-promo-block {
    display: inline-flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 19%;
    background: #fff;
    margin: 0 1.5% 30px;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 20px;
    padding-top: 0px;
    height: 520px;
    overflow: hidden;
    transition: box-shadow 0.3s, transform 0.3s;
}

/* Height for suggestive plugin blocks */
.ph-suggestive-ext-promo-block {
    height: 350px;
}

/* Hover effect with shadow only on right and bottom */
.ph-ext-promo-block:hover,
.ph-suggestive-ext-promo-block:hover {
    box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.2);
}

.ph-ext-promo-block h3,
.ph-suggestive-ext-promo-block h3 {
    color: #1e1e59;
    font-size: 16px;
    margin-bottom: 15px;
}

.ph-ext-plugin-img {
    width: 200px;
    height: 200px;
}

.ph-ext-promo-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    text-align: left;
}

.ph-ext-promo-benefits li {
    margin-bottom: 10px;
    color: #555;
    font-size: 14px;
    padding-left: 25px;
    position: relative;
}

.ph-ext-promo-benefits li:before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #4caf50;
    font-size: 16px;
}

.ph-ext-button-container {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.ph-ext-button-upsell,
.ph-ext-more-info {
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    display: inline-block;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: border-color 0.3s, box-shadow 0.3s, background-color 0.3s, color 0.3s;
}

.ph-ext-button-upsell {
    background-color: #0B9DBC;
    color: #fff;
}

.ph-ext-button-upsell:hover,
.ph-ext-button-upsell:focus,
.ph-ext-button-upsell:active {
    background-color: #1f7c98;
    color: #fff;
}

.ph-ext-button-upsell:visited {
    color: #fff;
}

.ph-ext-more-info {
    background-color: #fff;
    color: #0B9DBC;
}

.ph-ext-more-info:hover {
    color: #0B9DBC;
    outline: 2px solid #0B9DBC;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Grouped media queries */
@media only screen and (max-width: 1716px) {
    .ph-ext-promo-block, 
    .ph-suggestive-ext-promo-block {
        width: 27%;
    }
}

@media only screen and (max-width: 1529px) {
    .ph-ext-promo-block, 
    .ph-suggestive-ext-promo-block {
        width: 26%;
    }
}

@media only screen and (max-width: 1343px) {
    .ph-ext-promo-block, 
    .ph-suggestive-ext-promo-block {
        width: 42%;
    }
}

@media only screen and (max-width: 1157px) {
    .ph-ext-promo-block, 
    .ph-suggestive-ext-promo-block {
        width: 40%;
    }
}

@media only screen and (max-width: 763px) {
    .ph-ext-promo-block, 
    .ph-suggestive-ext-promo-block {
        width: 80%;
        margin: 0 30px 30px 20px;
    }
}

/****************************************************** Informational Banner ********************************************************/

/* Informational Banner */
.ph-info-banner {
    display: flex;
    flex-direction: row; /* Arrange sections horizontally */
    width: 100%;
    height: 70px; /* Set height for the container */
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Informational Banner Sections */
.ph-info-banner-section {
    flex: 1; /* Each section takes equal width */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 12px;
    background: #fff;
    position: relative;
}

/* Divider between informational banner sections */
.ph-info-banner-section:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0; /* Position divider on the right edge of the section */
    top: 15%;
    bottom: 15%;
    width: 1px;
    background-color: #ccc; /* Light gray divider color */
}

/* SVGs used within the informational banner */
.ph-info-banner-svg {
    height: 35px;
    padding: 10px;
    transition: transform 0.3s;
}

/* Adjust text to align with SVG */
.ph-info-banner-link span {
    text-align: left;
    padding-right: 10px;
}

/* Links used within the informational banner */
.ph-info-banner-link {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-decoration: none; /* Remove underline */
    transition: color 0.3s, transform 0.3s;
    gap: 10px;
}

.ph-info-banner-link:focus {
    box-shadow: none;
}

/* Hide the text in mobile view */
@media (max-width: 768px) { /* Adjust the max-width as needed */
    .ph-info-banner-section .ph-info-banner-link span {
        display: none;
    }
}