/*
Theme Name: Hello Elementor Child
Template: hello-elementor
Description: Child theme for Hello Elementor - safe place for custom PHP and template overrides
*/

/* Grid for donation amounts (fixed + custom) */
.charitable-donation-form ul.donation-amounts {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

/* Reset any old floats / widths so each <li> behaves like a grid cell */
.charitable-donation-form ul.donation-amounts > li {
    float: none !important;
    width: auto !important;
    margin: 0 !important;
}

/* Make sure the custom amount does NOT span a full row */
.charitable-donation-form ul.donation-amounts > li.custom-donation-amount {
    grid-column: auto !important;
}

.custom-donation-input {
	text-align:center;
}

.myinlineimg{
   float: left;
    margin: 0 10px 10px 0; /* right + bottom spacing */
	width:150px;
}