/* golf-status-widget.css */
/* style.css */

.golf-status-widget-wrapper {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: space-between;
}

.golf-status-item {
    padding: 10px;
    margin: 0 10px;
    flex: 1;
	border: none;
}

.golf-status-label{
	font-size: var( --e-global-typography-54a9717-font-size );
	font-weight: var( --e-global-typography-54a9717-font-weight );
	line-height: var( --e-global-typography-54a9717-line-height );
	letter-spacing: var( --e-global-typography-54a9717-letter-spacing );
	word-spacing: var( --e-global-typography-54a9717-word-spacing );
	margin-bottom: 10px;
}

/* Style for the green checkmark */
.golf-status-widget-wrapper i.fas.fa-check {
    color: green;
}

/* Style for the red cross */
.golf-status-widget-wrapper i.fas.fa-times {
    color: red;
}