.zk-pb-container {
    display: flex;
    gap: 10px;
    padding: 0px;
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
	margin-top: 7px !important;
}
.zk-pb-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}
.zk-pb-column-right {
    flex: 1;
}
.zk-pb-button {
    display: flex;
    justify-content: center;
	align-items: center; /* Add this to center vertically */
    background-color: white;
    color: #045CB4;
    text-decoration: none;
	border: 1px solid #045CB4;
    border-radius: 4px;
    font-family: Arial, sans-serif;
	font-size: 11px;
	font-weight: 600;
    width: 100%;
	height:27px;
	filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.2));
}
.zk-pb-button:hover {
    background-color: #4890d7;
    color: white;

}
.zk-pb-button-right {
    display: flex;
    justify-content: center;
	align-items: center; /* Add this to center vertically */
	height: 64px; /* Matches height of two stacked buttons + gap */
	padding: 0; /* Override padding to avoid shifting content */
    text-align: center; /* Fallback for text alignment */
    box-sizing: border-box; /* Ensure padding/border don't affect size */
}