/*=========================================================================
# Project Overview
===========================================================================
Project Name    : Weplugins Backend Core
Author          : Weplugins
Developer       : Dinesh Suthar
Version         : 1.0.0
Created On      : 15 June 2025
Last Updated    : 15 June 2025
Description     : This stylesheet is designed for an weplugins. 
                  Includes responsive design principles and accessibility.
===========================================================================*/

/*=========================================================================
# General Guidelines
===========================================================================
1. Maintain a modular approach for styles.
2. Test styles across all major browsers (Chrome, Firefox, Safari, Edge).
3. Ensure proper accessibility (e.g., WCAG compliance).
===========================================================================*/

/* Embedded font family
===========================================================================*/
@charset "UTF-8";
/* Variables
===========================================================================*/
:root {
  /* Colors */
  --fc-black: #000000;
  --fc-white: #ffffff;
  --fc-primary: #4390ff;
  --fc-primary-hover: #1572f5;
  --fc-secondary: #f5f7fa;
  --fc-success: #37b24d;
  --fc-danger: #e03131;
  --fc-info: #0dcaf0;
  --fc-warning: #fabb04;
  --fc-light: #ebebee;
  --fc-dark: #23272f;

  /* Link */
  --fc-link-color: var(--fc-primary);
  --fc-link-hover-color: var(--fc-primary-hover);
  --fc-link-text-decoration: none;

  /* Body Props */
  --fc-body-color: #65686e;
  --fc-body-bg: var(--fc-white);
  --fc-body-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  --fc-body-font-size: 16px;
  --fc-body-font-weight: 400;
  --fc-body-line-height: 1.3;

  /* Border */
  --fc-border-width: 1px;
  --fc-border-style: solid;
  --fc-border-color: rgba(0, 0, 0, 0.1);

  /* Heading */
  --fc-heading-color: #23272f;
  --fc-heading-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  --fc-heading-font-weight: 600;
  --fc-heading-line-height: 1.15;
  --fc-heading-margin-bottom: 16px;

  /* Other Variables */
  --fc-spacer: 10px;
  --fc-border-radius: 8px;
  --fc-border-radius-sm: 6px;
  --fc-border-radius-lg: 14px;
  --fc-border-radius-circle: 50%;
  --fc-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  --fc-box-shadow-lg: 0 2px 6px rgba(0, 0, 0, 0.1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

/* Browser native scrollbar
===========================================================================*/
* {
  scrollbar-width: thin !important;
  scrollbar-color: rgba(0, 0, 0, 0.25) transparent;
}

::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar:horizontal {
  height: 4px;
}

::-webkit-scrollbar-track {
  border-radius: 4px;
  background: transparent;
}

::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.2);
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.4);
}

::-webkit-scrollbar-thumb:window-inactive {
  background: rgba(0, 0, 0, 0.2);
}

/* Row column classes
===========================================================================*/
.fc-row {
  --fc-gutter-x: 30px;
  --fc-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--fc-gutter-y));
  margin-right: calc(-0.5 * var(--fc-gutter-x));
  margin-left: calc(-0.5 * var(--fc-gutter-x));
}
.fc-row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--fc-gutter-x) * 0.5);
  padding-left: calc(var(--fc-gutter-x) * 0.5);
  margin-top: var(--fc-gutter-y);
}

.fc-auto {
  flex: 0 0 auto;
  width: auto;
}

.fc-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}

.fc-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}

.fc-3 {
  flex: 0 0 auto;
  width: 25%;
}

.fc-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.fc-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}

.fc-6 {
  flex: 0 0 auto;
  width: 50%;
}

.fc-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}

.fc-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}

.fc-9 {
  flex: 0 0 auto;
  width: 75%;
}

.fc-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}

.fc-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}

.fc-12 {
  flex: 0 0 auto;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .fc-1,
  .fc-2,
  .fc-3,
  .fc-4,
  .fc-5,
  .fc-6,
  .fc-7,
  .fc-8,
  .fc-9,
  .fc-10,
  .fc-11,
  .fc-12 {
    width: 100%;
  }
}

/* Form Group
===========================================================================*/
.fc-form-group {
  margin-bottom: calc(var(--fc-spacer) * 3);
}

/* Form Control Input & Textarea
===========================================================================*/
.wpgmp-autocomplete-wrapper input.fc-form-control,
textarea.fc-form-control,
input.fc-form-control {
  --fc-form-control-padding-y: 12px;
  --fc-form-control-padding-x: 20px;
  --fc-form-control-font-size: 16px;
  --fc-form-control-font-weight: 400;
  --fc-form-control-line-height: 20px;
  --fc-form-control-bg: #fff;
  --fc-form-control-color: var(--fc-body-color);
  --fc-form-control-placeholder-color: #868e96;
  --fc-form-control-border-width: 1px;
  --fc-form-control-border-color: rgba(0, 0, 0, 0.1);
  --fc-form-control-active-border-color: var(--fc-primary);
  --fc-form-control-box-shadow: none;
  --fc-form-control-active-box-shadow: none;
  --fc-form-control-border-radius: 8px;
  --fc-form-control-height: 46px;
  position: relative;
  display: block;
  margin: 0;
  width: 100%;
  padding: var(--fc-form-control-padding-y) var(--fc-form-control-padding-x);
  font-size: var(--fc-form-control-font-size);
  font-weight: var(--fc-form-control-font-weight);
  line-height: var(--fc-form-control-line-height);
  min-height: var(--fc-form-control-height);
  color: var(--fc-form-control-color);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--fc-form-control-bg);
  background-clip: padding-box;
  box-shadow: var(--fc-form-control-box-shadow);
  border: var(--fc-form-control-border-width) solid
    var(--fc-form-control-border-color);
  border-radius: var(--fc-form-control-border-radius);
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .fc-form-control {
    transition: none;
  }
}

.wpgmp-autocomplete-wrapper input.fc-form-control:focus,
textarea.fc-form-control:focus,
input.fc-form-control:focus {
  color: var(--fc-form-control-color);
  background-color: var(--fc-form-control-bg);
  border-color: var(--fc-form-control-active-border-color);
  box-shadow: var(--fc-form-control-active-box-shadow);
  border-style: solid;
  outline: 0 none;
}

textarea.fc-form-control::-moz-placeholder,
input.fc-form-control::-moz-placeholder {
  color: var(--fc-form-control-placeholder-color);
  opacity: 1;
}

textarea.fc-form-control::placeholder,
input.fc-form-control::placeholder {
  color: var(--fc-form-control-placeholder-color);
  opacity: 1;
}

/* Form Select
===========================================================================*/
select.fc-form-select {
  --fc-form-select-bg-img: url("data:image/svg+xml,%3Csvg width='18' height='9' viewBox='0 0 18 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.9201 0.950195L10.4001 7.4702C9.63008 8.2402 8.37008 8.2402 7.60008 7.4702L1.08008 0.950195' stroke='%234390FF' stroke-width='1.5' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  --fc-form-select-padding-y: 12px;
  --fc-form-select-padding-x: 20px;
  --fc-form-select-font-size: 16px;
  --fc-form-select-font-weight: 400;
  --fc-form-select-line-height: 20px;
  --fc-form-select-height: 46px;
  --fc-form-select-bg: #fff;
  --fc-form-select-color: var(--fc-body-color);
  --fc-form-select-placeholder-color: #868e96;
  --fc-form-select-border-width: 1px;
  --fc-form-select-border-color: rgba(0, 0, 0, 0.1);
  --fc-form-select-active-border-color: var(--fc-primary);
  --fc-form-select-active-box-shadow: none;
  --fc-form-select-box-shadow: none;
  --fc-form-select-border-radius: 8px;
  position: relative;
  display: block;
  margin: 0;
  width: 100%;
  max-width: none;
  padding: var(--fc-form-select-padding-y)
    calc(var(--fc-form-select-padding-x) + 16px) var(--fc-form-select-padding-y)
    var(--fc-form-select-padding-x);
  font-size: var(--fc-form-select-font-size);
  font-weight: var(--fc-form-select-font-weight);
  line-height: var(--fc-form-select-line-height);
  color: var(--fc-form-select-color);
  min-height: var(--fc-form-select-height);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--fc-form-select-bg);
  background-image: var(--fc-form-select-bg-img);
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 16px 12px;
  border: var(--fc-border-width) solid var(--fc-form-select-border-color);
  border-radius: var(--fc-form-select-border-radius);
  box-shadow: var(--fc-form-select-box-shadow);
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .fc-form-select {
    transition: none;
  }
}

select.fc-form-select:hover {
  color: var(--fc-form-select-color);
}

select.fc-form-select:focus {
  color: var(--fc-form-select-color);
  background-color: var(--fc-form-select-bg);
  border-color: var(--fc-form-select-active-border-color);
  box-shadow: var(--fc-form-select-active-box-shadow);
  outline: 0;
}
select.fc-form-select[multiple],
select.fc-form-select[size]:not([size="1"]) {
  padding-right: var(--fc-form-select-padding-y);
  background-image: none;
}

/* Select 2
===========================================================================*/
.select2-container {
  --fc-form-select2-bg-img: url("data:image/svg+xml,%3Csvg width='18' height='9' viewBox='0 0 18 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.9201 0.950195L10.4001 7.4702C9.63008 8.2402 8.37008 8.2402 7.60008 7.4702L1.08008 0.950195' stroke='%234390FF' stroke-width='1.5' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  display: block !important;
}

.select2-container--default .select2-selection--single {
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  border-radius: 8px !important;
  height: 52px !important;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  color: var(--fc-body-color) !important;
  font-size: 16px;
  line-height: 52px !important;
  padding-left: 20px !important;
  padding-right: 40px !important;
  background-image: var(--fc-form-select2-bg-img) !important;
  background-repeat: no-repeat !important;
  background-position: right 15px center !important;
  background-size: 16px 12px !important;
}

.select2-container--default.select2-container--open.select2-container--below
  .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--below
  .select2-selection--multiple {
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.select2-container--default .select2-selection__arrow {
  display: none;
}

.select2-dropdown {
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border-color: var(--fc-primary) !important;
}

.select2-container--default .select2-results__option--selected,
.select2-container--default
  .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: var(--fc-primary) !important;
  color: var(--fc-white) !important;
}

/* Select2 multiple */
.select2-container--default .select2-selection--multiple {
  color: var(--fc-body-color) !important;
  min-height: 52px !important;
  padding-left: 20px !important;
  padding-right: 40px !important;
  border-radius: 8px !important;
  border-color: rgba(0, 0, 0, 0.1) !important;
  background-image: var(--fc-form-select2-bg-img) !important;
  background-repeat: no-repeat !important;
  background-position: right 15px center !important;
  background-size: 16px 12px !important;
}

.select2-container--default
  .select2-selection--multiple
  .select2-selection__clear {
  margin-top: 12px !important;
  margin-right: 40px !important;
}

.select2-container .select2-search--inline .select2-search__field {
  height: 24px !important;
  margin-top: 12px !important;
  font-size: 16px !important;
  /* margin-left: 0 !important; */
}

.select2-container--default
  .select2-selection--multiple
  .select2-selection__choice {
  margin-top: 15px !important;
}

/* Button
===========================================================================*/
.fc-btn {
  --fc-btn-padding-x: 20px;
  --fc-btn-padding-y: 12px;
  --fc-btn-font-family: var(--fc-body-font-family);
  --fc-btn-font-size: 16px;
  --fc-btn-font-weight: 500;
  --fc-btn-line-height: 20px;
  --fc-btn-color: #23272f;
  --fc-btn-bg: transparent;
  --fc-btn-border-width: var(--fc-border-width);
  --fc-btn-border-color: transparent;
  --fc-btn-border-radius: 8px;
  --fc-btn-hover-border-color: transparent;
  --fc-btn-box-shadow: none;
  display: inline-flex;
  justify-content: center;
  padding: var(--fc-btn-padding-y) var(--fc-btn-padding-x);
  font-family: var(--fc-btn-font-family);
  font-size: var(--fc-btn-font-size);
  font-weight: var(--fc-btn-font-weight);
  line-height: var(--fc-btn-line-height);
  color: var(--fc-btn-color);
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  border: var(--fc-btn-border-width) solid var(--fc-btn-border-color);
  border-radius: var(--fc-btn-border-radius);
  background-color: var(--fc-btn-bg);
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .fc-btn {
    transition: none;
  }
}

.fc-btn:hover,
.fc-btn:focus {
  color: var(--fc-btn-hover-color);
  background-color: var(--fc-btn-hover-bg);
  border-color: var(--fc-btn-hover-border-color);
  box-shadow: var(--fc-btn-box-shadow);
}

.fc-btn:focus-visible {
  color: var(--fc-btn-hover-color);
  background-color: var(--fc-btn-hover-bg);
  border-color: var(--fc-btn-hover-border-color);
  outline: 0;
}

.fc-btn-default,
.fc-btn-submit,
.fc-btn-primary {
  --fc-btn-color: #fff;
  --fc-btn-bg: var(--fc-primary);
  --fc-btn-border-color: var(--fc-primary);
  --fc-btn-hover-color: #fff;
  --fc-btn-hover-bg: var(--fc-primary-hover);
  --fc-btn-hover-border-color: var(--fc-primary-hover);
}

.wep-btn-wrapper,
.fc-btn-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

/* File Upload
===========================================================================*/
.fc-file-input-wrapper {
  position: relative;
}

.fc-file-input {
  --fc-file-input-width: 145px;
  width: var(--fc-file-input-width);
  opacity: 0;
  cursor: pointer;
  overflow: hidden;
  position: absolute;
  inset: 0;
}

.fc-file-input::-webkit-file-upload-button {
  cursor: pointer;
}
.fc-file-input::file-selector-button {
  cursor: pointer;
}

.fc-file-input + label {
  --fc-file-input-padding-y: 15px;
  --fc-file-input-padding-x: 24px;
  --fc-file-input-font-size: 18px;
  --fc-file-input-font-weight: 600;
  --fc-file-input-line-height: 20px;
  --fc-file-input-bg: #ebebee;
  --fc-file-input-hover-bg: #d3d3d3;
  --fc-file-input-color: #23272f;
  --fc-file-input-border-radius: 8px;
  display: inline-flex;
  background-color: var(--fc-file-input-bg);
  cursor: pointer;
  border-radius: var(--fc-file-input-border-radius);
  padding: var(--fc-file-input-padding-y) var(--fc-file-input-padding-x);
  font-size: var(--fc-file-input-font-size);
  font-weight: var(--fc-file-input-font-weight);
  line-height: var(--fc-file-input-line-height);
  color: var(--fc-file-input-color);
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.fc-file-input + label:hover,
.fc-file-input:hover + label {
  --fc-file-input-bg: var(--fc-file-input-hover-bg);
}

.fc-file-input-wrapper .fc-file-details {
  margin-left: 10px;
}

/* Alert
===========================================================================*/
.fc-alert {
  --fc-alert-bg: transparent;
  --fc-alert-padding-x: 24px;
  --fc-alert-padding-y: 12px;
  --fc-alert-margin-bottom: 16px;
  --fc-alert-color: inherit;
  --fc-alert-border-color: transparent;
  --fc-alert-border: var(--fc-border-width) solid var(--fc-alert-border-color);
  --fc-alert-border-radius: var(--fc-border-radius);
  --fc-alert-link-color: inherit;
  --fc-alert-font-weight: 500;
  position: relative;
  padding: var(--fc-alert-padding-y) var(--fc-alert-padding-x);
  margin-bottom: var(--fc-alert-margin-bottom);
  color: var(--fc-alert-color);
  background-color: var(--fc-alert-bg);
  border: var(--fc-alert-border);
  border-radius: var(--fc-alert-border-radius);
  font-weight: var(--fc-alert-font-weight);
}

.fc-alert-heading {
  color: inherit;
}

.fc-alert-link {
  font-weight: 700;
  color: var(--fc-alert-link-color);
}

.fc-alert-dismissible {
  padding-right: 48px;
}

.fc-alert-dismissible .btn-close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  padding: 20px 16px;
}

.fc-alert-primary {
  --fc-alert-color: color-mix(in srgb, var(--fc-primary) 30%, var(--fc-dark));
  --fc-alert-bg: color-mix(in srgb, var(--fc-primary) 20%, transparent);
  --fc-alert-link-color: color-mix(
    in srgb,
    var(--fc-primary) 40%,
    var(--fc-dark)
  );
}

.fc-alert-success {
  --fc-alert-color: color-mix(in srgb, var(--fc-success) 30%, var(--fc-dark));
  --fc-alert-bg: color-mix(in srgb, var(--fc-success) 20%, transparent);
  --fc-alert-link-color: color-mix(
    in srgb,
    var(--fc-success) 40%,
    var(--fc-dark)
  );
}

.fc-alert-info {
  --fc-alert-color: color-mix(in srgb, var(--fc-info) 30%, var(--fc-dark));
  --fc-alert-bg: color-mix(in srgb, var(--fc-info) 10%, transparent);
  --fc-alert-link-color: color-mix(in srgb, var(--fc-info) 40%, var(--fc-dark));
}

.fc-alert-warning {
  --fc-alert-color: color-mix(in srgb, var(--fc-warning) 30%, var(--fc-dark));
  --fc-alert-bg: color-mix(in srgb, var(--fc-warning) 20%, transparent);
  --fc-alert-link-color: color-mix(
    in srgb,
    var(--fc-warning) 40%,
    var(--fc-dark)
  );
}

.fc-alert-danger {
  --fc-alert-color: color-mix(in srgb, var(--fc-danger) 30%, var(--fc-dark));
  --fc-alert-bg: color-mix(in srgb, var(--fc-danger) 20%, transparent);
  --fc-alert-link-color: color-mix(
    in srgb,
    var(--fc-danger) 40%,
    var(--fc-dark)
  );
}
/* Form Submission styles
===========================================================================*/
.frontend-submissions-wpgmp dd {
  margin: 0;
}

.wpuls_location_listings .search-box,
.wpuls_location_listings .tablenav.top,
.wpuls_location_listings .check-column,
.wpuls_location_listings .wpgmp_menu_title,
.wpuls_location_listings table td.location_title button {
  display: none !important;
}

.wpuls_location_listings fieldset {
  border: 0 none;
  margin: 0;
  padding: 0;
}

/* Table
--------------------------------------------*/
.wpuls_location_listings .wp-list-table .row-actions {
  display: flex;
  gap: 2px;
}

.wpuls_location_listings
  .wp-list-table
  .row-actions
  :is(span.edit, span.delete, span.copy) {
  font-size: 0;
}

.wpuls_location_listings
  .wp-list-table
  .row-actions
  :is(span.edit_icon, span.delete_icon, span.copy_icon) {
  font-family: "weplugin";
  font-size: 18px;
  color: var(--fc-dark);
  padding: 5px;
  height: 32px;
  width: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--fc-border-radius-circle);
}

.wpuls_location_listings
  .wp-list-table
  .row-actions
  :is(span.edit_icon:hover, span.delete_icon:hover, span.copy_icon:hover) {
  background-color: color-mix(in srgb, var(--fc-dark) 10%, transparent);
}

.wpuls_location_listings .wp-list-table .row-actions .edit_icon::before {
  content: "\e85d";
}

.wpuls_location_listings .wp-list-table .row-actions .delete_icon::before {
  content: "\e813";
  color: var(--fc-danger);
}

.wpuls_location_listings .wp-list-table .row-actions .copy_icon::before {
  content: "\e84b";
  color: var(--fc-primary);
}

.wpuls_location_listings .tablenav-pages {
  --fc-pagination-bg: transparent;
  --fc-pagination-color: var(--fc-dark);
  --fc-pagination-active-bg: var(--fc-primary);
  --fc-pagination-active-color: var(--fc-white);
  --fc-pagination-active-border-color: var(--fc-primary);
  --fc-pagination-border-color: rgba(0, 0, 0, 0.2);
  --fc-pagination-border-radius: 0;
  --fc-pagination-font-size: 24px;
  --fc-pagination-line-height: 24px;
  --fc-pagination-font-weight: 400;
  display: flex;
  align-items: center;
  gap: 10px;
}

.wpuls_location_listings .tablenav-pages .pagination-links {
  display: flex;
  align-items: center;
  gap: 5px;
}
.wpuls_location_listings .tablenav-pages .paging-input {
  padding-inline: 5px;
}

.wpuls_location_listings .tablenav-pages .button {
  padding: 5px;
  height: 42px;
  width: 42px;
  font-size: var(--fc-pagination-font-size);
  line-height: var(--fc-pagination-line-height);
  font-weight: var(--fc-pagination-font-weight);
  display: flex;
  align-items: baseline;
  justify-content: center;
  border: 1px solid var(--fc-pagination-border-color);
  border-radius: var(--fc-pagination-border-radius);
  background-color: var(--fc-pagination-bg);
  color: var(--fc-pagination-color);
  cursor: pointer;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out;
  text-decoration: none;
}

.wpuls_location_listings .tablenav-pages .button:is(:hover, :focus) {
  background-color: var(--fc-pagination-active-bg);
  color: var(--fc-pagination-active-color);
  border-color: var(--fc-pagination-active-border-color);
}
