/**
 * 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;
}

.thinc-company-modal {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 9999;
}

.thinc-company-modal.is-open {
	display: block;
}

.thinc-company-modal-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
}

.thinc-company-modal-dialog {
	position: relative;
	max-width: 640px;
	margin: 8vh auto;
	background: #fff;
	border-radius: 12px;
	padding: 28px 24px 22px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.thinc-company-modal-close {
	position: absolute;
	top: 10px;
	right: 12px;
	border: none;
	background: transparent;
	font-size: 26px;
	line-height: 1;
	cursor: pointer;
	color: #1f2937;
}

.thinc-company-modal-title {
	margin: 0 0 8px 0;
	color: #1a3c4e;
	font-size: 22px;
}

.thinc-company-modal-description {
	margin: 0 0 18px 0;
	color: #4b5563;
}

.thinc-company-modal-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 12px;
	margin-bottom: 16px;
}

.thinc-company-card {
	border: 1px solid #e5e7eb;
	border-radius: 10px;
	padding: 12px 14px;
	background: #f9fafb;
}

.thinc-company-card-title {
	font-weight: 600;
	color: #111827;
	margin-bottom: 6px;
}

.thinc-company-card-email {
	color: #2563eb;
	font-size: 13px;
	word-break: break-word;
}

.thinc-company-modal-alert {
	background: #fff7ed;
	color: #9a3412;
	border: 1px solid #fdba74;
	border-radius: 8px;
	padding: 10px 12px;
	font-size: 13px;
}

.thinc-company-reset-btn {
	margin-top: 10px;
	padding: 8px 12px;
	border: none;
	border-radius: 6px;
	background: #1a3c4e;
	color: #fff;
	cursor: pointer;
	font-size: 13px;
}

.thinc-company-reset-btn:disabled {
	opacity: 0.7;
	cursor: default;
}

.thinc-org-login-help {
	padding: 10px 0;
}

.thinc-org-login-box {
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	padding: 18px 20px;
	background: #fff;
	max-width: 640px;
}

.thinc-org-login-box h3 {
	margin: 0 0 12px 0;
	color: #1a3c4e;
}

.thinc-org-login-form {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-bottom: 14px;
}

.thinc-org-login-form input {
	flex: 1;
	min-width: 220px;
	padding: 10px 12px;
	border: 1px solid #d1d5db;
	border-radius: 6px;
}

.thinc-org-login-form button {
	padding: 10px 16px;
	border: none;
	border-radius: 6px;
	background: #1a3c4e;
	color: #fff;
	cursor: pointer;
}

.thinc-org-login-results {
	display: grid;
	gap: 12px;
}

.thinc-org-login-card {
	border: 1px solid #e5e7eb;
	border-radius: 10px;
	padding: 12px 14px;
	background: #f9fafb;
}

.thinc-org-login-title {
	font-weight: 600;
	margin-bottom: 8px;
	color: #111827;
}

.thinc-org-login-request {
	padding: 8px 12px;
	border: none;
	border-radius: 6px;
	background: #2563eb;
	color: #fff;
	cursor: pointer;
	font-size: 13px;
}

.thinc-org-login-request:disabled {
	opacity: 0.7;
	cursor: default;
}

.thinc-org-login-note {
	margin-top: 6px;
	font-size: 12px;
	color: #6b7280;
}

.thinc-org-login-empty {
	color: #6b7280;
	font-size: 13px;
}