@charset "UTF-8";
/* 
 * Rotující výsledková listina - Běh Oty Pavla
 * Responzivní design s bílým/průhledným pozadím
 */

.bop-rotation-wrap {
    font-family: inherit;
    padding: 20px;
    background: transparent;
    color: inherit;
    min-height: 100vh;
    animation: fadeIn 0.5s ease-in-out;
}

.bop-rotation-header {
    text-align: center;
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.bop-rotation-title {
    font-size: 2.5em;
    margin: 0 0 10px 0;
    color: #333;
    text-shadow: none;
    font-weight: 700;
}

.bop-rotation-subtitle {
    font-size: 1.2em;
    opacity: 0.7;
    margin: 0 0 15px 0;
    color: #666;
}

.bop-rotation-progress {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.bop-rotation-counter {
    font-size: 1.1em;
    background: rgba(0, 0, 0, 0.05);
    color: #333;
    padding: 8px 15px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-weight: 500;
}

.bop-rotation-bar {
    width: 300px;
    height: 8px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.bop-rotation-fill {
    height: 100%;
    background: linear-gradient(90deg, #28a745, #20c997);
    width: 0%;
    animation: progressFill 30s linear forwards;
}

@keyframes progressFill {
    from { width: 0%; }
    to { width: 100%; }
}

.bop-rotation-table {
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-collapse: collapse;
}

.bop-rotation-table th {
    background: #f8f9fa;
    color: #333;
    padding: 15px;
    font-size: 1.1em;
    text-align: center;
    border-bottom: 2px solid #dee2e6;
    font-weight: 600;
}

.bop-rotation-table td {
    padding: 12px 15px;
    text-align: center;
    border-bottom: 1px solid #dee2e6;
}

.bop-rotation-table tr:nth-child(even) {
    background: rgba(0, 0, 0, 0.02);
}

.bop-rotation-table tr:hover {
    background: rgba(0, 0, 0, 0.05);
}

.bop-rotation-position {
    font-weight: bold;
    font-size: 1.2em;
    color: #007bff;
}

.bop-rotation-time {
    font-weight: bold;
    font-size: 1.1em;
    color: #dc3545;
}

.bop-rotation-name {
    font-weight: 600;
    color: #333;
}

/* Responsivní design */
@media (max-width: 768px) {
    .bop-rotation-wrap {
        padding: 10px;
    }
    
    .bop-rotation-title {
        font-size: 2em;
    }
    
    .bop-rotation-progress {
        flex-direction: column;
        gap: 10px;
    }
    
    .bop-rotation-bar {
        width: 250px;
    }
    
    .bop-rotation-table {
        font-size: 0.9em;
    }
    
    .bop-rotation-table th,
    .bop-rotation-table td {
        padding: 8px 6px;
    }
}

@media (max-width: 480px) {
    .bop-rotation-title {
        font-size: 1.6em;
    }
    
    .bop-rotation-subtitle {
        font-size: 1em;
    }
    
    .bop-rotation-bar {
        width: 200px;
    }
    
    .bop-rotation-table {
        font-size: 0.8em;
    }
}

/* Speciální styl pro prázdný stav */
.bop-rotation-empty {
    text-align: center;
    font-size: 1.5em;
    margin-top: 50px;
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #666;
}

.bop-rotation-empty p {
    margin: 0 0 15px 0;
}

.bop-rotation-empty p:last-child {
    opacity: 0.7;
    font-size: 0.8em;
    margin: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.bop-rotation-wrap {
  font-family: inherit;
  padding: 20px;
  background: transparent;
  color: inherit;
  min-height: 100vh;
  animation: fadeIn 0.5s ease-in-out;
}

.bop-rotation-header {
  text-align: center;
  margin-bottom: 30px;
  background: rgba(255, 255, 255, 0.9);
  padding: 20px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.bop-rotation-title {
  font-size: 2.5em;
  margin: 0 0 10px 0;
  color: #333;
  text-shadow: none;
  font-weight: 700;
}

.bop-rotation-subtitle {
  font-size: 1.2em;
  opacity: 0.7;
  margin: 0 0 15px 0;
  color: #666;
}

.bop-rotation-progress {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.bop-rotation-counter {
  font-size: 1.1em;
  background: rgba(0, 0, 0, 0.05);
  color: #333;
  padding: 8px 15px;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-weight: 500;
}

.bop-rotation-bar {
  width: 300px;
  height: 8px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.bop-rotation-fill {
  height: 100%;
  background: linear-gradient(90deg, #28a745, #20c997);
  width: 0%;
  animation: progressFill 30s linear forwards;
}

@keyframes progressFill {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}
.bop-rotation-table {
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  color: #333;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-collapse: collapse;
}
.bop-rotation-table th {
  background: #f8f9fa;
  color: #333;
  padding: 15px;
  font-size: 1.1em;
  text-align: center;
  border-bottom: 2px solid #dee2e6;
  font-weight: 600;
}
.bop-rotation-table td {
  padding: 12px 15px;
  text-align: center;
  border-bottom: 1px solid #dee2e6;
}
.bop-rotation-table tr:nth-child(even) {
  background: rgba(0, 0, 0, 0.02);
}
.bop-rotation-table tr:hover {
  background: rgba(0, 0, 0, 0.05);
}

.bop-rotation-position {
  font-weight: bold;
  font-size: 1.2em;
  color: #007bff;
}

.bop-rotation-time {
  font-weight: bold;
  font-size: 1.1em;
  color: #dc3545;
}

.bop-rotation-name {
  font-weight: 600;
  color: #333;
}

@media (max-width: 768px) {
  .bop-rotation-wrap {
    padding: 10px;
  }
  .bop-rotation-title {
    font-size: 2em;
  }
  .bop-rotation-progress {
    flex-direction: column;
    gap: 10px;
  }
  .bop-rotation-bar {
    width: 250px;
  }
  .bop-rotation-table {
    font-size: 0.9em;
  }
  .bop-rotation-table th,
  .bop-rotation-table td {
    padding: 8px 6px;
  }
}
@media (max-width: 480px) {
  .bop-rotation-title {
    font-size: 1.6em;
  }
  .bop-rotation-subtitle {
    font-size: 1em;
  }
  .bop-rotation-bar {
    width: 200px;
  }
  .bop-rotation-table {
    font-size: 0.8em;
  }
}
.bop-rotation-empty {
  text-align: center;
  font-size: 1.5em;
  margin-top: 50px;
  background: rgba(255, 255, 255, 0.9);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #666;
}
.bop-rotation-empty p {
  margin: 0 0 15px 0;
}
.bop-rotation-empty p:last-child {
  opacity: 0.7;
  font-size: 0.8em;
  margin: 0;
}

/* Ovládací tlačítka */
.bop-rotation-controls {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 15px 0;
  flex-wrap: wrap;
}

.bop-rotation-btn {
  background: linear-gradient(135deg, #4CAF50, #45a049);
  color: white;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(76, 175, 80, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bop-rotation-btn:hover {
  background: linear-gradient(135deg, #45a049, #3d8b40);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
}

.bop-rotation-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 5px rgba(76, 175, 80, 0.3);
}

/* Speciální styl pro pause tlačítko */
#pause-btn {
  background: linear-gradient(135deg, #FF9800, #F57C00);
  box-shadow: 0 2px 10px rgba(255, 152, 0, 0.3);
}

#pause-btn:hover {
  background: linear-gradient(135deg, #F57C00, #E65100);
  box-shadow: 0 4px 15px rgba(255, 152, 0, 0.4);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}/*# sourceMappingURL=bop-rotation.css.map */