/* Rwanda Premier League Standings Page Theme */

/* Root colors to match global theme */
:root {
  --rpl-blue: #3498db;
  --rpl-dark-blue: #1a5276;
  --rpl-deep-blue: #0d2c40;
  --rpl-green: #00a651;
  --rpl-yellow: #fdd216;
  --rpl-light: #f8f9fa;
}

/* Background Elements */
.magical-gradient-bg {
  background: linear-gradient(135deg, #0d2c40, #1a5276);
  position: relative;
  overflow: hidden;
}

.rwanda-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 0;
  opacity: 0.05;
  pointer-events: none;
}

.imigongo-pattern-side {
  position: absolute;
  width: 200px;
  height: 100%;
  top: 0;
  z-index: 0;
  opacity: 0.1;
  background-image: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 0h2v20H9V0zm25.134.84l1.732 1-10 17.32-1.732-1 10-17.32zm-20 20l1.732 1-10 17.32-1.732-1 10-17.32zM58.16 4.134l1 1.732-17.32 10-1-1.732 17.32-10zm-40 40l1 1.732-17.32 10-1-1.732 17.32-10zM80 9v2H60V9h20zM20 69v2H0v-2h20zm79.32-55.134l1 1.732-17.32 10-1-1.732 17.32-10zM103.632 9.732l1.732 1-10 17.32-1.732-1 10-17.32zm-60 60l1.732 1-10 17.32-1.732-1 10-17.32zm-35.368 0l1.732 1-10 17.32-1.732-1 10-17.32zM97 80v2H77v-2h20zm-40 40v2H37v-2h20zm39.32-55.134l1 1.732-17.32 10-1-1.732 17.32-10zM39.32 24.134l1 1.732-17.32 10-1-1.732 17.32-10zM112 0h2v20h-2V0zm-97.32 0l1 1.732-17.32 10-1-1.732 17.32-10zM0 49v2h20v-2H0zm92.32 34.134l1 1.732-17.32 10-1-1.732 17.32-10zm-20 0l1 1.732-17.32 10-1-1.732 17.32-10zM77 49v2H57v-2h20zm-40 40v2H17v-2h20zm-40 0v2H0v-2h17z' fill='%23ffffff' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.imigongo-pattern-side.right {
  right: 0;
}

.imigongo-pattern-side.left {
  left: 0;
}

.imigongo-pattern-side.animated {
  animation: patternSlide 60s linear infinite;
  background-attachment: fixed;
}

@keyframes patternSlide {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 1000px;
  }
}

/* Magic Glass Effect */
.magical-glass {
  background: rgba(21, 67, 96, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.imigongo-modern {
  position: relative;
  border-radius: 8px;
  border: 1px solid rgba(206, 17, 38, 0.2);
}

.imigongo-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
      135deg,
      rgba(206, 17, 38, 0.05) 25%,
      transparent 25%
    ),
    linear-gradient(225deg, rgba(206, 17, 38, 0.05) 25%, transparent 25%),
    linear-gradient(315deg, rgba(206, 17, 38, 0.05) 25%, transparent 25%),
    linear-gradient(45deg, rgba(206, 17, 38, 0.05) 25%, transparent 25%);
  background-size: 20px 20px;
  background-position: 0 0, 10px 0, 10px -10px, 0px 10px;
  border-radius: 8px;
  opacity: 0.3;
  z-index: 0;
  pointer-events: none;
}

/* Section Heading */
.section-heading {
  position: relative;
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 15px;
  color: white;
}

.section-heading h2 {
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: inline-block;
  background: linear-gradient(90deg, #fad201, #ce1126);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.section-heading h2::before,
.section-heading h2::after {
  content: "";
  position: absolute;
  height: 4px;
  border-radius: 2px;
  bottom: -8px;
}

.section-heading h2::before {
  background-color: #0072c6;
  width: 70%;
  left: 15%;
}

.section-heading h2::after {
  background-color: #ce1126;
  width: 40%;
  left: 30%;
  bottom: -15px;
}

.section-heading .subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 15px;
  display: block;
}

.section-heading .decorative-pattern {
  position: absolute;
  width: 100%;
  height: 12px;
  bottom: -5px;
  left: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0L8 6L0 12M20 0L28 6L20 12M40 0L48 6L40 12M60 0L68 6L60 12M80 0L88 6L80 12' stroke='%23fad201' fill='none' stroke-width='1'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  opacity: 0.6;
}
.rpl-section-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.rpl-section-title {
  color: white;
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 1px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.rpl-section-divider {
  height: 4px;
  background: linear-gradient(
    90deg,
    #ce1126 33.33%,
    #fad201 33.33%,
    #fad201 66.66%,
    #0072c6 66.66%
  );
  border-radius: 2px;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

/* Standings Table */
.standings-table-wrapper {
  padding: 20px;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.table-actions {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.table-filter,
.table-view-options {
  display: flex;
  gap: 10px;
}

.btn-table-filter,
.btn-table-view {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 4px;
  padding: 8px 15px;
  color: white;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-table-filter:hover,
.btn-table-view:hover {
  background: rgba(255, 255, 255, 0.2);
}

.btn-table-filter.active,
.btn-table-view.active {
  background: rgba(250, 210, 1, 0.2);
  border-left: 3px solid #fad201;
  font-weight: 600;
}

/* Standings table styling */
.standings-table-wrapper {
  position: relative;
  margin-bottom: 40px;
  padding: 0;
  background: rgba(13, 44, 64, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 1px solid rgba(52, 152, 219, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.table-actions {
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.2);
}

.standings-table {
  width: 100%;
  color: white;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 0;
}

.standings-table thead {
  position: sticky;
  top: 0;
  z-index: 10;
}

.standings-table th {
  background-color: rgba(26, 82, 118, 0.7);
  color: var(--rpl-light);
  font-weight: 600;
  text-transform: uppercase;
  padding: 15px 10px;
  text-align: center;
  font-size: 0.9rem;
  border-bottom: 2px solid rgba(52, 152, 219, 0.5);
  letter-spacing: 0.5px;
  position: relative;
  transition: all 0.3s ease;
}

.standings-table th:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(52, 152, 219, 0.7),
    transparent
  );
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.standings-table th:hover:after {
  transform: scaleX(1);
}

.standings-table td {
  padding: 16px 10px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  font-weight: 500;
}

.standings-table tr {
  transition: all 0.3s ease;
  position: relative;
}

.standings-table tr:hover td {
  background-color: rgba(52, 152, 219, 0.1);
}

.standings-table tr:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background: transparent;
  transition: all 0.3s ease;
}

.standings-table tr:hover:before {
  background: var(--rpl-blue);
}

.standings-table tr.champions-league:before {
  background: #2ecc71;
}

.standings-table tr.continental:before {
  background: #3498db;
}

.standings-table tr.relegation:before {
  background: #e74c3c;
}

.team-column {
  width: 250px;
}

.team-info {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-left: 10px;
}

.team-info img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: contain;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 3px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.standings-table tr:hover .team-info img {
  transform: scale(1.1);
  border-color: var(--rpl-blue);
  box-shadow: 0 0 10px rgba(52, 152, 219, 0.5);
}

.team-info span {
  font-weight: 600;
  color: white;
  transition: color 0.3s ease;
  text-align: left;
}

.standings-table tr:hover .team-info span {
  color: var(--rpl-blue);
}

.standings-table td:nth-child(10) {
  font-weight: 700;
  color: var(--rpl-yellow);
  font-size: 1.1rem;
}

/* Position indicators */
.standings-table td:first-child {
  font-weight: 700;
  position: relative;
  overflow: hidden;
}

.standings-table td:first-child:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  z-index: 0;
}

.standings-table tr.champions-league td:first-child:before {
  background-color: #2ecc71;
}

.standings-table tr.continental td:first-child:before {
  background-color: #3498db;
}

.standings-table tr.relegation td:first-child:before {
  background-color: #e74c3c;
}

/* League legend */
.league-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
  padding: 15px 20px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.legend-color {
  width: 12px;
  height: 12px;
  border-radius: 2px;
}

.legend-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

.champions-color {
  background-color: #2ecc71;
}

.continental-color {
  background-color: #3498db;
}

.relegation-color {
  background-color: #e74c3c;
}

/* Team Info */
.team-info {
  display: flex;
  align-items: center;
}

.team-logo-container {
  width: 30px;
  height: 30px;
  margin-right: 10px;
  overflow: hidden;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.team-name {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.team-name:hover {
  color: #fad201;
}

/* Position Styling */
.position {
  position: relative;
}

.position-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  font-weight: 600;
  font-size: 0.8rem;
}

/* Form Indicators */
.form-indicator {
  display: flex;
  justify-content: center;
  gap: 4px;
}

.form-indicator.large {
  gap: 12px;
  margin: 15px 0;
}

.form-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

.form-badge:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(255, 255, 255, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.form-badge:hover:after {
  opacity: 1;
}

.form-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

.form-indicator.large .form-badge {
  width: 38px;
  height: 38px;
  font-size: 1.1rem;
  animation: pulse-soft 2s infinite;
}

@keyframes pulse-soft {
  0% {
    transform: scale(1);
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
  }
}

.form-badge.w {
  background: #2ecc71;
  color: white;
}

.form-badge.d {
  background: #f39c12;
  color: white;
}

.form-badge.l {
  background: #ce1126;
  color: white;
}

.form-badge:hover {
  transform: scale(1.1);
}

.team-form {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.form-title {
  color: white;
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 10px;
}

.team-link {
  text-align: center;
  margin-top: 20px;
}

.btn-view-team {
  background: linear-gradient(135deg, #3498db, #1a5276);
  color: white;
  border: none;
  border-radius: 4px;
  padding: 10px 20px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-view-team:hover {
  background: linear-gradient(135deg, #1a5276, #0d2c40);
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  color: white;
  text-decoration: none;
}

/* Intro Text */
.intro-text {
  max-width: 800px;
  margin: 0 auto 30px;
}

.intro-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

/* Animated Pattern Background */
.pattern-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.03;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h20v20H0zm20 20h20v20H20zM0 40h20v20H0zm40-40h20v20H40zm0 40h20v20H40z' fill='%23ffffff' fill-opacity='0.3'/%3E%3C/svg%3E");
  animation: patternMove 120s linear infinite;
}

@keyframes patternMove {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 1000px 1000px;
  }
}

/* Rwanda Flag Colors Glow Effect */
.rwanda-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  z-index: 0;
}

.rwanda-glow.blue {
  background-color: #0072c6;
  width: 300px;
  height: 300px;
  top: 10%;
  left: 10%;
  animation: glow-float 15s ease-in-out infinite;
}

.rwanda-glow.yellow {
  background-color: #fad201;
  width: 250px;
  height: 250px;
  bottom: 20%;
  right: 15%;
  animation: glow-float 18s ease-in-out infinite reverse;
}

.rwanda-glow.red {
  background-color: #ce1126;
  width: 200px;
  height: 200px;
  bottom: 15%;
  left: 20%;
  animation: glow-float 12s ease-in-out infinite 2s;
}

@keyframes glow-float {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(20px, 20px);
  }
  50% {
    transform: translate(0, 40px);
  }
  75% {
    transform: translate(-20px, 20px);
  }
  100% {
    transform: translate(0, 0);
  }
}

/* Team Stats Cards */
.team-stats-card {
  padding: 20px;
  height: 100%;
  position: relative;
  background: linear-gradient(135deg, #0d2c40 0%, #1a5276 100%);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.team-stats-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(52, 152, 219, 0.2);
}

.video-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("/assets/templates/basic/images/imigongo-pattern.svg");
  opacity: 0.15;
  z-index: -1;
  transform: rotate(5deg) scale(1.2);
  transition: all 0.5s ease;
}

.team-stats-card:hover .video-pattern {
  opacity: 0.08;
  transform: rotate(0deg) scale(1);
}

.rpl-corner-accent {
  position: absolute;
  width: 20px;
  height: 20px;
  z-index: 5;
}

.rpl-corner-accent.top-left {
  top: 0;
  left: 0;
  border-top: 3px solid var(--rpl-blue);
  border-left: 3px solid var(--rpl-blue);
  border-top-left-radius: 5px;
}

.rpl-corner-accent.top-right {
  top: 0;
  right: 0;
  border-top: 3px solid var(--rpl-yellow);
  border-right: 3px solid var(--rpl-yellow);
  border-top-right-radius: 5px;
}

.rpl-corner-accent.bottom-left {
  bottom: 0;
  left: 0;
  border-bottom: 3px solid var(--rpl-yellow);
  border-left: 3px solid var(--rpl-yellow);
  border-bottom-left-radius: 5px;
}

.rpl-corner-accent.bottom-right {
  bottom: 0;
  right: 0;
  border-bottom: 3px solid #e74c3c;
  border-right: 3px solid #e74c3c;
  border-bottom-right-radius: 5px;
}

.team-stats-card:hover {
  transform: translateY(-5px);
}

.team-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.team-header .team-logo-container {
  width: 50px;
  height: 50px;
  margin-right: 15px;
}

.team-header .team-name {
  font-size: 1.2rem;
}

.team-position {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.position-label {
  color: rgba(255, 255, 255, 0.7);
}

.team-position .position-number {
  width: 36px;
  height: 36px;
  font-size: 1.2rem;
}

.team-stats .stat-row {
  margin-bottom: 15px;
}

.stat-row .stat-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.8);
}

.progress {
  height: 8px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  overflow: hidden;
}

.rpl-progress {
  height: 10px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  overflow: hidden;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
  margin-bottom: 5px;
}

.rpl-progress-bar {
  height: 100%;
  border-radius: 4px;
  transition: width 1.5s cubic-bezier(0.12, 0.89, 0.31, 1);
  background-size: 30px 30px;
  background-image: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15) 25%,
    transparent 25%,
    transparent 50%,
    rgba(255, 255, 255, 0.15) 50%,
    rgba(255, 255, 255, 0.15) 75%,
    transparent 75%,
    transparent
  );
  animation: progress-bar-stripes 2s linear infinite;
}

@keyframes progress-bar-stripes {
  from {
    background-position: 30px 0;
  }
  to {
    background-position: 0 0;
  }
}

.win-bar {
  background-color: #38b000;
}

.draw-bar {
  background-color: #fad201;
}

.loss-bar {
  background-color: #ce1126;
}

.progress-bar {
  height: 100%;
  border-radius: 4px;
  transition: width 1s ease;
}

.stats-summary {
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-item {
  text-align: center;
  flex: 1;
}

.summary-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  display: block;
}

.win-highlight {
  color: #38b000;
  text-shadow: 0 0 10px rgba(56, 176, 0, 0.5);
}

.draw-highlight {
  color: #fad201;
  text-shadow: 0 0 10px rgba(250, 210, 1, 0.5);
}

.loss-highlight {
  color: #ce1126;
  text-shadow: 0 0 10px rgba(206, 17, 38, 0.5);
}

.points-highlight {
  color: #0072c6;
  text-shadow: 0 0 10px rgba(0, 114, 198, 0.5);
  font-size: 1.8rem;
}

.summary-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  display: block;
}

/* Detailed View */
.standings-table-wrapper.detailed-view .rpl-standings-table .d-none {
  display: table-cell !important;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .rpl-section-title {
    font-size: 1.5rem;
  }

  .team-stats-section .col-lg-4 {
    margin-bottom: 20px;
  }

  .standings-table-wrapper {
    overflow-x: auto;
  }
}

@media (max-width: 768px) {
  .table-actions {
    flex-direction: column;
    gap: 15px;
  }

  .rpl-section-title {
    font-size: 1.2rem;
  }

  .rpl-standings-table .team-column {
    min-width: 150px;
  }

  .rpl-standings-table tbody tr td {
    padding: 8px 5px;
    font-size: 0.9rem;
  }

  .team-name {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .rpl-section-header {
    flex-direction: column;
    text-align: center;
  }

  .rpl-section-icon {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .table-filter,
  .table-view-options {
    width: 100%;
    justify-content: center;
  }

  .btn-table-filter,
  .btn-table-view {
    padding: 6px 10px;
    font-size: 0.8rem;
  }
}
