/* Immo PDF Export — styles du bouton uniquement */

.immo-pdf-export-btn {
    display: flex;
	flex-direction : column;
    align-items: flex-start;
    gap: 0px;
    padding: 0;
    background-color: #fff!important;
    color: var(--e-global-color-accent) !important;;
    font-size: 18px;
    font-weight: 700;
    font-family: "Montserrat";
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.2s ease, opacity 0.2s ease;
    line-height: 12px;
	margin-left: 40px;
	margin-top: 15px;
}

.immo-pdf-export-btn span {
	font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 0.2em;
	display : block;
}
.immo-pdf-export-btn:hover,
.immo-pdf-export-btn:focus {
    background-color: #c8a96e;
    color: #ffffff;
    outline: none;
}

.immo-pdf-export-btn:active {
    opacity: 0.85;
}

.immo-pdf-export-btn:disabled,
.immo-pdf-export-btn[aria-busy="true"] {
    background-color: #6b8aaa;
    cursor: not-allowed;
    opacity: 0.7;
}

/* Icône PDF inline SVG via content (optionnel) */
.immo-pdf-export-btn::before {
    content: "";
    display: inline-block;
    width: 23px;
    height: 32px;
    background-image: url("/wp-content/plugins/immo-pdf-export/assets/css/sante.png");
    background-repeat: no-repeat;
    background-size: contain;
    flex-shrink: 0;
	position: absolute;
    left: 5px;
}
