/* Editor de Video - Rediseño para unificar con Programador */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #3BAAE2;
  --primary-light: #5CBCEB;
  --primary-dark: #2A99D1;
  --sidebar-bg: #002A42;
  --header-bg: #FFFFFF;
  --footer-bg: #002A42;
  --background: #FFFFFF;
  --card-bg: #F8F9FA;
  --border-light: #E2E8F0;
  --text-primary: #1A202C;
  --text-secondary: #4A5568;
  --text-muted: #718096;
  --accent: #E02020;
  --radius: 0.5rem;
}

/* Estilos base */
body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: var(--background);
  color: var(--text-primary);
  padding-bottom: 60px; /* Espacio para el footer fijo */
}

/* Header rediseñado */
header {
  background-color: var(--header-bg);
  color: var(--sidebar-bg);
  padding: 0;
  width: 100%;
  border-bottom: 1px solid rgba(59, 170, 226, 0.2);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.header-container {
  width: 1140px;
  max-width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo-container img {
  height: 40px;
  width: auto;
  margin-right: 10px;
}

h1 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  color: var(--sidebar-bg);
}

/* Contenedor principal */
main {
  width: 1140px;
  max-width: 90%;
  margin: 0 auto;
  padding: 20px 0;
  font-family: 'Montserrat', sans-serif;
}

/* Sidebar */
.sidebar {
  background-color: var(--card-bg);
  border-radius: var(--radius);
  padding: 15px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.sidebar h2 {
  color: var(--sidebar-bg);
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 15px;
  font-weight: 600;
}

/* Botones generales (no afecta a los controles de video) */
.sidebar button,
.clip-actions button {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  border-radius: var(--radius);
  transition: all 0.2s ease;
}

.btn-search {
  color: var(--primary);
}

/* Footer */
.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--footer-bg);
  color: white;
  padding: 15px 0;
  border-top: 1px solid rgba(59, 170, 226, 0.2);
  z-index: 1000;
}

.footer-container {
  width: 1140px;
  max-width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo img {
  height: 30px;
  width: auto;
}

.footer-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  
  .footer-links {
    margin-top: 10px;
  }
}
