/* This file should be saved as 'css/shortcode-styles.css' inside your plugin's css folder. */

/* === Business Info Shortcode Styling === */
.business-info-shortcode h3,
.pricing-title {
    font-size: 1.5em;
    margin-bottom: 0.5em;
    color: #333333;
}

.business-info-shortcode p,
.pricing-subtitle,
.pricing-disclaimer,
.pricing-note {
    margin: 0;
    line-height: 1.5;
    color: #333333;
}

.business-info-shortcode strong {
    font-weight: bold;
}

.business-info-shortcode a {
    text-decoration: none;
    color: #0073aa;
}

.business-info-shortcode a:hover {
    text-decoration: underline;
}

/* === Business Hours Shortcode Styling === */
.business-hours-shortcode {
    margin: 0 auto;
}

.business-hours-shortcode-table {
    width: 100%;
    border-collapse: collapse;
	text-align: center;
	letter-spacing: .1em;

}

.business-hours-shortcode-table tr:nth-child(even) {
    background-color: #f4f4f4;
}

.business-hours-shortcode-table tr:nth-child(odd) {
    background-color: #ffffff;
}

.business-hours-shortcode-table td {
    padding: 8px 10px;
    border: none;
}

.business-hours-shortcode-table .day-cell {
    font-weight: bold;
}



/* === Business Holiday Shortcode Styling === */
.business-holidays-shortcode {
    margin: 0 auto;
}

.business-holidays-shortcode-table {
    width: 100%;
    border-collapse: collapse;
	text-align: center;
	letter-spacing: .1em;
}

.business-holidays-shortcode-table td {
    padding: 8px 10px;
    border: none;
}

.business-holidays-shortcode-table .date-cell {
    font-weight: bold;
}

.business-holidays-shortcode-table tr:nth-child(even) {
    background-color: #f4f4f4;
}

.business-holidays-shortcode-table tr:nth-child(odd) {
    background-color: #ffffff;
}

.business-holidays-shortcode-table tr:last-child td {
    border-bottom: none;
}