/* Container */
.fsm-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

/* Filters Section */
.fsm-filters {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.fsm-filter-row {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.fsm-filter-row:last-child {
    margin-bottom: 0;
}

.fsm-filter-group {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
}

.fsm-filter-group label {
    font-size: 12px;
    font-weight: 600;
    color: #495057;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fsm-input,
.fsm-select {
    padding: 10px 12px;
    border: 1px solid #AE8129;
    border-radius: 4px;
    font-size: 14px;
    background: white;
    transition: border-color 0.2s;
}

.fsm-input:focus,
.fsm-select:focus {
    outline: none;
    border-color: #e7cc2f;
}

.fsm-button {
    padding: 10px 20px;
    background: #AE8129;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: auto;
}

.fsm-button:hover {
    background: #e7cc2f;
}

/* Results Info */
.fsm-results-info {
    padding: 15px 0;
    font-size: 14px;
    color: #6c757d;
}

/* Players List */
.fsm-players-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Player Row */
.fsm-player-row {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    color: inherit;
}

.fsm-player-row:hover {
    background: #f8f9fa;
    border-color: #0066cc;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
     text-decoration: none; 
    }

.fsm-player-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
    border: 2px solid #dee2e6;
}
img.fsm-player-photo {
  width: 60px !important;
  height: 60px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  border: 2px solid #dee2e6;
}

.fsm-player-photo.placeholder {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 20px;
  border: 2px solid #dee2e6;
}

.fsm-player-name {
    font-size: 18px;
    font-weight: 600;
    color: #212529;
    margin-bottom: 5px;
}

.fsm-player-meta {
    font-size: 13px;
    color: #6c757d;
}

.fsm-player-meta span {
    margin-right: 15px;
}

.fsm-player-action {
    color: #0066cc;
    font-size: 14px;
    font-weight: 600;
}

/* Pagination */
.fsm-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    padding: 20px 0;
}

.fsm-page-button {
    padding: 8px 16px;
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 14px;
}

.fsm-page-button:hover:not(:disabled) {
    background: #0066cc;
    color: white;
    border-color: #0066cc;
}

.fsm-page-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.fsm-page-button.active {
    background: #0066cc;
    color: white;
    border-color: #0066cc;
}

.fsm-page-info {
    font-size: 14px;
    color: #6c757d;
    padding: 0 10px;
}

/* Loading State */
.fsm-loading {
    text-align: center;
    padding: 40px;
    color: #6c757d;
}

.fsm-player-row {
  display: grid;
  grid-template-columns: 60px 200px 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 15px;
  border-bottom: 1px solid #eee;
  text-decoration: none;
  color: inherit;
}

.fsm-player-stats {
  display: flex;
  gap: 15px;
  flex: 1;
  justify-content: center;
  flex-wrap: wrap;
}

.fsm-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 70px;
}

.fsm-stat-label {
  font-size: 11px;
  color: #666;
  text-transform: uppercase;
  font-weight: 600;
}

.fsm-stat-value {
  font-size: 16px;
  font-weight: bold;
  color: #333;
}

footer .elementor-widget-text-editor,
footer p,
footer a,
footer .elementor-heading-title {
    color: #ffffff !important;
}
/* Responsive */
@media (max-width: 768px) {
    .fsm-filter-row {
        flex-direction: column;
    }
    
    .fsm-filter-group {
        min-width: 100%;
    }
    
    .fsm-player-row {
        display: flex;
        flex-direction: column;
        text-align: center;
    }
    
    .fsm-player-photo {
        margin-right: 0;
        margin-bottom: 10px;
    }
}