/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

.custom-calendar {
    font-family: Arial, sans-serif;
}

.calendar-table {
    width: 100%;
    border-collapse: collapse;
}

.calendar-table th,
.calendar-table td {
    padding: 5px;
    text-align: center;
    border: none;
	background:#fff ;
}

.calendar-table th {
    background-color: #fff;
}

.calendar-table .has-events {
    position: relative;
}

.calendar-table .has-events::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
	transform:translatex(-50%);
    height: 8px;
    width: 8px;
    background-color: red;
    border-radius: 50%;
}

.calendar-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.calendar-nav a {
    text-decoration: none;
    color: #333;
}

.calendar-nav a:hover {
    color: #0073aa;
}


td.membership-actions a, td a.cancel, td a.change_payment_method, td a.subscription_renewal_early, td.order-actions a {
    display: inline-block;
    background: #1a3c4e;
    color: #fff;
    padding: 3px 10px;
    margin: 0 5px 5px 0;
    border-radius: 5px;
}