table  .rk-calendar-container {
max-width: 900px;
margin: 20px auto; 
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
background: #fff;
border-radius: 20px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
overflow: hidden;
}
.rk-calendar-header {
background: #fff;
color: #333;
padding: 40px 30px 30px;
text-align: center;
border-bottom: 1px solid #f0f0f0;
}
.rk-calendar-header h3 {
margin: 0 0 10px 0;
font-size: 28px;
font-weight: 700;
color: #333;
}
.rk-calendar-description {
color: #666;
font-size: 16px;
margin-bottom: 0;
line-height: 1.5;
}
.rk-info-item {
display: flex;
align-items: center;
gap: 8px;
font-size: 14px;
color: #666;
}
.rk-info-item br {
display: none;
}
.rk-legend-available,
.rk-legend-reserved,
.rk-legend-selected,
.rk-legend-range {
width: 16px;
height: 16px;
border-radius: 4px;
display: inline-block;
}
.rk-legend-available {
background: transparent;
border: 2px solid #ddd;
}
.rk-legend-available br{
display: none;
}
.rk-legend-reserved {
background: #ff6b6b;
}
.rk-legend-reserved br{
display: none;
}
.rk-legend-selected {
background: #A1875D;
}
.rk-legend-selected br{
display: none;
}
.rk-legend-range {
background: #CBBBA0;
}
.rk-legend-range br{
display: none;
} .rk-calendar-navigation {
display: flex;
justify-content: space-around;
align-items: center;
padding: 20px 30px;
background: #fff;
border-bottom: 1px solid #f0f0f0;
gap: 30px;
}
.rk-nav-btn {
background: transparent;
color: #333;
border: 2px solid #A1875D;
width: 130px;
height: 45px;
border-radius: 8px;
font-size: 15px;
cursor: pointer;
transition: all 0.3s ease;
display: flex;
align-items: center;
justify-content: center;
}
.rk-nav-btn:hover {
background: #A1875D;
color: white;
border: 2px solid #A1875D;
}
.rk-nav-btn:focus {
color: #333;
background: transparent;  
border: 2px solid #A1875D;
}
.rk-current-month {
font-size: 20px;
font-weight: 600;
color: #333;
min-width: 200px;
text-align: center;
} .rk-calendar-grid {
padding: 30px;
background: #fff;
}
.rk-months-container {
display: flex;
gap: 40px;
justify-content: center;
flex-wrap: wrap;
}
.rk-month-container {
flex: 1;
min-width: 300px;
max-width: 400px;
}
.rk-month-header {
text-align: center;
font-size: 18px;
font-weight: 600;
margin-bottom: 20px;
color: #333;
}
.rk-calendar-table {
border: none;
width: 100%;
border-collapse: separate;
border-spacing: 2px;
margin-bottom: 20px;
}
.rk-calendar-table th {
background: transparent;
padding: 12px 8px;
text-align: center;
font-weight: 600;
color: #666;
border: none;
font-size: 14px;
}
.rk-calendar-table td {
border: none;
padding: 2px;
height: 45px;
text-align: center;
position: relative;
}
.rk-day {
width: 100%;
height: 100%;
border: none;
background: transparent;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
font-size: 14px;
transition: all 0.2s ease;
color: #333;
border-radius: 8px;
font-weight: 500;
}
.rk-wrapper td button{
padding-left: 26px !important;
padding-right: 26px !important;
padding-top: 15px !important;
padding-bottom: 15px !important;
}
.rk-wrapper .rk-day:hover {
background: #f0f0f0;
}
.rk-wrapper .rk-day.rk-disabled {
color: #ccc;
cursor: not-allowed;
background: transparent;
}
.rk-wrapper .rk-day.rk-disabled:hover {
background: transparent;
}
.rk-wrapper .rk-day.rk-reserved {
background: #ff6b6b;
color: white;
cursor: not-allowed;
}
.rk-wrapper .rk-day.rk-reserved:hover {
background: #ff6b6b;
}
.rk-wrapper .rk-day.rk-available {
background: transparent;
color: #333;
border: 1px solid #ddd;
}
.rk-wrapper .rk-day.rk-available:hover {
background: #f8f8f8;
border-color: #A1875D;
}
.rk-wrapper .rk-day.rk-selected {
background: #A1875D;
color: white;
border: none;
}
.rk-wrapper .rk-day.rk-selected:hover {
background: #8f7554;
}
.rk-wrapper .rk-day.rk-in-range {
background: #CBBBA0;
color: #333;
border: none;
}
.rk-wrapper .rk-day.rk-start-date,
.rk-wrapper .rk-day.rk-end-date {
background: #A1875D;
color: white;
font-weight: 600;
font-size: large;
} .rk-bottom-section {
display: flex;
flex-direction: column;
gap: 20px;
padding: 25px 30px;
background: #f8f9fb;
border-top: 1px solid #f0f0f0;
}
.rk-legend-section {
display: flex;
justify-content: start;
}
.rk-min-nights-info {
display: flex;
align-items: center;
gap: 6px;
padding: 16px;
background: #f8f9fa;
color: #495057;
font-size: 14px;
font-weight: 500;
}
.rk-info-icon {
font-size: 16px;
flex-shrink: 0;
}
.rk-min-nights-text {
margin: 0;
}
.rk-controls-section {
display: flex;
align-items: center;
justify-content: space-between;
gap: 20px;
}
.rk-calendar-info {
display: flex;
align-items: center;
gap: 25px;
flex-wrap: wrap;
justify-content: center;
}
.rk-selected-period {
text-align: left;
padding: 0.5rem;
background: transparent;
border: none;
color: #333;
margin-bottom: 0;
white-space: nowrap;
font-size: 14px;
display: flex;
align-items: center;
gap: 8px;
}
.rk-selected-period strong {
color: #A1875D;
font-weight: 600;
font-size: 14px;
}
.rk-action-buttons {
display: flex;
align-items: center;
gap: 15px;
margin-left: auto;
} .rk-btn {
padding: 12px 30px;
border: none;
border-radius: 8px;
font-size: 12px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
text-decoration: none;
display: inline-flex;
align-items: center;
justify-content: center;
min-width: 140px;
text-align: center;
line-height: 1;
}
.rk-btn br{
display: none;
}
.rk-btn-primary {
background: #A1875D;
color: white;
box-shadow: 0 2px 8px rgba(161, 135, 93, 0.3);
text-align: center;
}
.rk-btn-primary:hover {
background: #8f7554;
transform: translateY(-1px);
box-shadow: 0 4px 12px rgba(161, 135, 93, 0.4);
}
.rk-btn-secondary {
background: white;
color: #666;
border: 1px solid #ddd;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.rk-btn-secondary:hover {
background: #f8f8f8;
border-color: #A1875D;
color: #A1875D;
transform: translateY(-1px);
} .rk-popup-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5);
z-index: 10000;
display: flex;
align-items: center;
justify-content: center;
opacity: 0;
transition: opacity 0.3s ease;
}
.rk-popup-overlay.rk-visible {
opacity: 1;
}
.rk-popup-form {
background: white;
border-radius: 20px;
max-width: 500px;
width: 90%;
max-height: 90vh;
overflow-y: auto;
transform: scale(0.7);
transition: transform 0.3s ease;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.rk-popup-overlay.rk-visible .rk-popup-form {
transform: scale(1);
}
.rk-popup-header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 25px 30px;
background: linear-gradient(135deg, #A1875D 0%, #CBBBA0 100%);
color: white;
border-radius: 20px 20px 0 0;
}
.rk-popup-header h3 {
margin: 0;
font-size: 20px;
font-weight: 600;
}
.rk-popup-close {
background: none;
border: none;
color: white;
font-size: 24px;
cursor: pointer;
padding: 0;
width: 30px;
height: 30px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
transition: background 0.2s ease;
}
.rk-popup-close:hover {
background: rgba(255, 255, 255, 0.2);
}
.rk-popup-content {
padding: 30px;
}
.rk-selected-dates-summary {
margin-bottom: 25px;
padding: 20px;
background: #f8f9fb;
border-radius: 12px;
text-align: center;
border: 1px solid #e9ecef;
}
.rk-selected-dates-summary h4 {
margin: 0 0 10px 0;
color: #333;
font-weight: 600;
}
.rk-dates-display {
font-size: 16px;
font-weight: 600;
color: #A1875D;
} .rk-form-row {
display: flex;
gap: 15px;
margin-bottom: 20px;
}
.rk-form-field {
flex: 1;
}
.rk-field-half {
flex: 0 0 calc(50% - 7.5px);
}
.rk-form-field label {
display: block;
margin-bottom: 5px;
font-weight: 500;
color: #333;
font-size: 16px;
}
.rk-form-field input,
.rk-form-field textarea {
width: 100%;
padding: 15px;
border: 2px solid #e9ecef;
border-radius: 10px;
font-size: 14px;
transition: border-color 0.3s ease;
box-sizing: border-box;
}
.rk-form-field input:focus,
.rk-form-field textarea:focus {
outline: none;
border-color: #A1875D;
}
.rk-checkbox-row {
align-items: flex-start;
}
.rk-checkbox-label {
gap: 10px;
cursor: pointer;
line-height: 1.4;
}
.rk-checkbox-label input[type="checkbox"] {
width: auto;
margin: 0;
}
.rk-form-actions {
display: flex;
justify-content: flex-end;
gap: 15px;
margin-top: 30px;
padding-top: 20px;
border-top: 1px solid #e9ecef;
}
.rk-form-messages {
margin-top: 15px;
}
.rk-message {
padding: 12px;
border-radius: 6px;
margin-bottom: 10px;
}
.rk-message.rk-success {
background: #d4edda;
color: #155724;
border: 1px solid #c3e6cb;
}
.rk-message.rk-error {
background: #f8d7da;
color: #721c24;
border: 1px solid #f5c6cb;
} @media (max-width: 768px) {
.rk-calendar-container {
margin: 10px;
border-radius: 15px;
}
.rk-calendar-header {
padding: 30px 20px 20px;
}
.rk-calendar-header h3 {
font-size: 24px;
}
.rk-bottom-section {
flex-direction: column;
gap: 20px;
padding: 25px 20px;
}
.rk-legend-section,
.rk-controls-section {
flex: none;
width: 100%;
}
.rk-controls-section {
flex-direction: column;
align-items: center;
gap: 15px;
}
.rk-calendar-info {
flex-direction: row;
flex-wrap: wrap;
justify-content: center;
gap: 15px;
}
.rk-selected-period {
text-align: center;
font-size: 14px;
}
.rk-action-buttons {
justify-content: center;
flex-wrap: wrap;
gap: 10px;
width: 100%;
}
.rk-btn {
padding: 14px 20px;
font-size: 14px;
min-width: 120px;
flex: 0 0 auto;
}
.rk-info-item {
font-size: 12px;
}
.rk-info-item br {
display: none;
}
.rk-months-container {
flex-direction: column;
gap: 30px;
}
.rk-month-container {
min-width: auto;
}
.rk-calendar-table th,
.rk-calendar-table td {
padding: 4px 2px;
}
.rk-day {
font-size: 12px;
height: 35px;
}
.rk-form-row {
flex-direction: column;
gap: 0;
}
.rk-field-half {
flex: 1;
}
.rk-form-actions {
flex-direction: column;
}
.rk-popup-form {
width: 95%;
margin: 20px;
border-radius: 15px;
}
.rk-btn {
padding: 12px 20px;
font-size: 14px;
}
}
@media (max-width: 480px) {
.rk-calendar-header {
padding: 20px 15px;
}
.rk-calendar-header h3 {
font-size: 20px;
}
.rk-calendar-navigation {
padding: 15px;
gap: 15px;
}
.rk-current-month {
font-size: 16px;
min-width: 150px;
}
.rk-nav-btn {
width: 40px;
height: 40px;
font-size: 18px;
}
.rk-bottom-section {
padding: 20px 15px;
}
.rk-calendar-info {
gap: 10px;
}
.rk-info-item {
font-size: 11px;
}
.rk-action-buttons {
flex-direction: column;
width: 100%;
}
.rk-btn {
width: 100%;
}
.rk-calendar-grid {
padding: 20px 15px;
}
.rk-current-month{
display: none;
}
.rk-nav-btn{
font-size: 12px;
width: 130px;
}
} .rk-snackbar {
position: fixed;
bottom: 30px;
left: 50%;
transform: translateX(-50%) translateY(100px);
z-index: 10000;
min-width: 300px;
max-width: 500px;
padding: 16px 24px;
border-radius: 8px;
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
color: white;
font-size: 16px;
font-weight: 500;
line-height: 1.4;
opacity: 0;
transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
display: flex;
align-items: center;
gap: 12px;
}
.rk-snackbar.show {
transform: translateX(-50%) translateY(0);
opacity: 1;
}
.rk-snackbar.success {
background: linear-gradient(135deg, #4CAF50, #388E3C);
}
.rk-snackbar.error {
background: linear-gradient(135deg, #f44336, #d32f2f);
}
.rk-snackbar.info {
background: linear-gradient(135deg, #2196F3, #1976D2);
}
.rk-snackbar-icon {
font-size: 20px;
font-weight: bold;
flex-shrink: 0;
}
.rk-snackbar-message {
flex: 1;
margin-right: 8px;
}
.rk-snackbar-action {
background: none;
border: none;
color: white;
font-weight: 600;
cursor: pointer;
padding: 4px 8px;
border-radius: 4px;
transition: background-color 0.2s ease;
text-transform: uppercase;
font-size: 14px;
letter-spacing: 0.5px;
}
.rk-snackbar-action:hover {
background: rgba(255, 255, 255, 0.1);
} @media (max-width: 768px) {
.rk-snackbar {
bottom: 20px;
left: 20px;
right: 20px;
transform: translateY(100px);
min-width: auto;
max-width: none;
}
.rk-snackbar.show {
transform: translateY(0);
}
} .rk-toast {
position: fixed;
top: 30px;
right: 30px;
z-index: 10000;
min-width: 300px;
max-width: 400px;
padding: 20px 24px;
border-radius: 12px;
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
color: white;
font-size: 16px;
font-weight: 500;
line-height: 1.4;
transform: translateX(100%);
opacity: 0;
transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.rk-toast.show {
transform: translateX(0);
opacity: 1;
}
.rk-toast.success {
background: linear-gradient(135deg, #4CAF50, #45a049);
border-left: 5px solid #2E7D32;
}
.rk-toast.error {
background: linear-gradient(135deg, #f44336, #e53935);
border-left: 5px solid #c62828;
}
.rk-toast-content {
display: flex;
align-items: center;
gap: 12px;
}
.rk-toast-icon {
font-size: 20px;
font-weight: bold;
}
.rk-toast-message {
flex: 1;
} @media (max-width: 768px) {
.rk-toast:nt {
top: 20px;
right: 20px;
left: 20px;
width: auto;
min-width: auto;
max-width: none;
transform: translateY(-100%);
}
.rk-toast.show {
transform: translateY(0);
}
}  .elementor-widget-container .rk-calendar-container,
body .rk-calendar-container {
max-width: 900px !important;
margin: 20px auto !important; 
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
background: #fff !important;
border-radius: 20px !important;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
overflow: hidden !important;
box-sizing: border-box !important;
}
.elementor-widget-container .rk-calendar-header,
body .rk-calendar-header {
background: #fff !important;
color: #333 !important;
padding: 40px 30px 30px !important;
text-align: center !important;
border-bottom: 1px solid #f0f0f0 !important;
}
.elementor-widget-container .rk-calendar-header h3,
body .rk-calendar-header h3 {
margin: 0 0 10px 0 !important;
font-size: 28px !important;
font-weight: 700 !important;
color: #333 !important;
}
.elementor-widget-container .rk-calendar-navigation,
body .rk-calendar-navigation {
display: flex !important;
justify-content: space-around !important;
align-items: center !important;
padding: 20px 30px !important;
background: #fff !important;
border-bottom: 1px solid #f0f0f0 !important;
}
.elementor-widget-container .rk-calendar-grid,
body .rk-calendar-grid {
padding: 0 !important;
background: #fff !important;
} .elementor-widget-container .rk-calendar-container * {
box-sizing: border-box !important;
}
.elementor-widget-container .rk-calendar-container h1,
.elementor-widget-container .rk-calendar-container h2,
.elementor-widget-container .rk-calendar-container h3,
.elementor-widget-container .rk-calendar-container h4,
.elementor-widget-container .rk-calendar-container h5,
.elementor-widget-container .rk-calendar-container h6 {
margin: 0 0 10px 0 !important;
}
.elementor-widget-container .rk-calendar-container p {
margin: 0 0 10px 0 !important;
}
.elementor-widget-container .rk-calendar-container button {
outline: none !important;
text-decoration: none !important;
box-shadow: none !important;
}  .elementor .elementor-section .elementor-container .elementor-widget .elementor-widget-container .rk-calendar-container,
.elementor-widget-html .rk-calendar-container,
body.elementor-page .rk-calendar-container {
max-width: 900px !important;
margin: 20px auto !important;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
background: #fff !important;
border-radius: 20px !important;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
overflow: hidden !important;
box-sizing: border-box !important;
position: relative !important;
width: 100% !important;
} .elementor .rk-calendar-grid,
.elementor-widget-html .rk-calendar-grid {
padding: 30px !important;
background: #fff !important;
} .elementor .rk-months-container,
.elementor-widget-html .rk-months-container {
display: flex !important;
flex-direction: row !important;
gap: 40px !important;
justify-content: center !important;
align-items: flex-start !important;
flex-wrap: wrap !important;
width: 100% !important;
} .elementor-widget-container .rk-month-container,
.elementor-widget-html .rk-month-container,
.elementor .rk-month-container,
body.elementor-page .rk-month-container {
flex: 1 !important;
min-width: 300px !important;
max-width: 400px !important;
display: block !important;
width: auto !important;
} .elementor-widget-container .rk-calendar-grid,
.elementor-widget-html .rk-calendar-grid {
width: 100% !important;
max-width: none !important;
min-width: auto !important;
overflow: visible !important;
} .elementor-widget-container .rk-calendar-table,
.elementor-widget-html .rk-calendar-table {
display: table !important;
table-layout: fixed !important;
} @media (max-width: 768px) {
.elementor-widget-container .rk-months-container,
.elementor-widget-html .rk-months-container {
flex-direction: column !important;
gap: 30px !important;
}
.elementor-widget-container .rk-month-container,
.elementor-widget-html .rk-month-container {
flex: none !important;
min-width: auto !important;
max-width: none !important;
width: 100% !important;
} .rk-wrapper .rk-month-container:nth-child(2) {
display: none !important;
}
}  .rk-wrapper {
position: relative !important;
width: 100% !important;
max-width: 1000px !important;
margin: 0 auto !important;
padding: 0 !important;
box-sizing: border-box !important;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
line-height: 1.4 !important; border: none !important;
outline: none !important; transform: none !important;
filter: none !important;
opacity: 1 !important;
z-index: auto !important;
} .rk-wrapper * {
box-sizing: border-box !important;
}
.rk-wrapper .rk-calendar-container {
max-width: 900px !important;
margin: 20px auto !important;
font-family: inherit !important;
background: #fff !important;
border-radius: 20px !important;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
overflow: hidden !important;
position: relative !important;
width: 100% !important;
}
.rk-wrapper .rk-months-container {
display: flex !important;
flex-direction: row !important;
gap: 40px !important;
justify-content: center !important;
align-items: flex-start !important;
flex-wrap: wrap !important;
width: 100% !important;
padding: 0 !important;
margin: 0 !important;
}
.rk-wrapper .rk-month-container {
flex: 1 !important;
min-width: 300px !important;
max-width: 400px !important;
display: block !important;
width: auto !important;
margin: 0 !important;
padding: 0 !important;
}
.rk-wrapper .rk-calendar-table {
border: none !important;
width: 100% !important;
border-collapse: separate !important;
border-spacing: 2px !important;
margin-bottom: 20px !important;
display: table !important;
table-layout: fixed !important;
}
.rk-wrapper .rk-calendar-grid {
padding: 30px !important;
background: #fff !important;
width: 100% !important;
max-width: none !important;
min-width: auto !important;
overflow: visible !important;
}
.rk-wrapper .rk-day{
border: none !important;
}
.rk-wrapper .rk-day .rk-day.rk-available:hover{
background: #f8f8f8;
} @media (max-width: 768px) {
.rk-wrapper .rk-months-container {
flex-direction: column !important;
gap: 30px !important;
align-content: center;
}
.rk-wrapper .rk-month-container {
flex: none !important;
min-width: auto !important;
max-width: none !important;
width: 100% !important;
}
}