body {
  margin: 0;
}
code {
  font-family:
    source-code-pro,
    Menlo,
    Monaco,
    Consolas,
    Courier New,
    monospace;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #f5f5f5;
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    Segoe UI,
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    Fira Sans,
    Droid Sans,
    Helvetica Neue,
    sans-serif;
}
.App {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.header {
  background: #fff;
  border-bottom: 5px solid #eee;
  padding: 1rem;
}
.mobile-header {
  justify-content: space-between;
  padding: 0.5rem 0;
}
.mobile-header,
.mobile-left {
  align-items: center;
  display: flex;
}
.mobile-left {
  justify-content: center;
  width: 50px;
}
.mobile-right {
  align-items: center;
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
  justify-content: flex-end;
  width: 100px;
}
.mobile-title {
  color: #333;
  flex: 1 1;
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 300;
  margin: 0;
  text-align: center;
}
.mobile-title strong {
  color: #000;
  font-size: 1.1em;
  font-weight: 700;
}
.mobile-menu-btn,
.mobile-user-btn {
  background: none;
  border: none;
  border-radius: 4px;
  color: #666;
  cursor: pointer;
  font-size: 0.75rem;
  padding: 0.5rem;
  transition: background 0.2s;
}
.mobile-menu-btn {
  font-size: 1.5rem;
}
.mobile-menu-btn:hover,
.mobile-user-btn:hover {
  background: #f0f0f0;
}
.mobile-menu {
  background: #fff;
  border-top: 1px solid #eee;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem 0;
}
.mobile-nav-button {
  background: none;
  border: none;
  color: #666;
  cursor: pointer;
  font-size: 1rem;
  padding: 12px 16px;
  text-align: center;
  transition: color 0.2s;
}
.mobile-nav-button:hover {
  background: #f8f9fa;
  color: #333;
}
.mobile-nav-button.active {
  background: #e9ecef;
  color: #000;
  font-weight: 600;
}
.desktop-header {
  display: none;
}
.desktop-top-nav {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1200px;
  padding: 0.5rem 0;
}
.desktop-nav-left {
  display: flex;
  gap: 2rem;
}
.desktop-nav-right {
  align-items: center;
  display: flex;
  gap: 15px;
}
.desktop-header h1 {
  color: #333;
  font-size: 1.8rem;
  font-style: italic;
  font-weight: 300;
  text-align: center;
}
.desktop-header h1 strong {
  color: #000;
  font-size: 1.1em;
  font-weight: 800;
}
.nav {
  border-top: 1px solid #f5f5f5;
  display: flex;
  gap: 2rem;
  justify-content: center;
  padding-top: 1rem;
}
.nav-button {
  background: none;
  border: none;
  color: #666;
  cursor: pointer;
  font-size: 1rem;
  padding: 8px 16px;
  transition: color 0.2s;
}
.nav-button:hover {
  color: #333;
}
.nav-button.active {
  border-bottom: 2px solid #333;
  color: #000;
  font-weight: 600;
}
.nav-button.logout {
  background-color: #dc3545;
  border-radius: 4px;
  color: #fff;
  margin-left: auto;
}
.nav-button.logout:hover {
  background-color: #c82333;
}
.loading {
  align-items: center;
  display: flex;
  font-size: 18px;
  height: 200px;
  justify-content: center;
}
.main {
  flex: 1 1;
  padding: 0;
  width: 100%;
}
.content {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 20px #0000001a;
  padding: 2rem;
  text-align: center;
}
.home-page {
  margin: 0 auto;
  max-width: 800px;
}
.hero-section h1 {
  color: #333;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.hero-section h2 {
  color: #666;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 2rem;
}
.description {
  color: #555;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 3rem;
}
.features-section h3 {
  color: #333;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 2rem;
}
.features-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}
.feature-card {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 1.5rem;
}
.feature-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.feature-card p {
  color: #555;
  font-size: 1rem;
  line-height: 1.5;
}
.cta-section {
  padding: 2rem 0;
}
.cta-section p {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}
.cta-section p .link-button {
  background: none;
  border: none;
  color: #6c757d;
  cursor: pointer;
  font-size: inherit;
  font-weight: 600;
  margin: 0;
  padding: 0;
  text-decoration: underline;
  transition: color 0.3s ease;
}
.cta-section p .link-button:hover {
  color: #000;
}
.cta-button {
  background: #6c757d;
  border: none;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  padding: 12px 24px;
  transition: background 0.2s;
}
.cta-button:hover {
  background: #5a6268;
  transform: translateY(-2px);
}
.content h2 {
  color: #333;
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 1rem;
}
.content p {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.6;
}
.footer {
  background: #fff;
  border-top: 1px solid #eee;
  color: #666;
  font-size: 0.9rem;
  margin-top: auto;
  padding: 1rem;
  text-align: center;
}
@media (min-width: 769px) {
  .mobile-header {
    display: none;
  }
  .mobile-menu {
    display: none !important;
  }
  .desktop-header {
    display: block;
  }
}
@media (max-width: 768px) {
  .desktop-header {
    display: none;
  }
  .main {
    padding: 0;
  }
  .content {
    padding: 1.5rem;
  }
  .hero-section h1 {
    font-size: 2rem;
  }
  .hero-section h2 {
    font-size: 1.3rem;
  }
  .features-grid {
    gap: 1.5rem;
  }
  .content h2 {
    font-size: 1.5rem;
  }
  .content p {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .header h1 {
    font-size: 1.5rem;
    letter-spacing: 1px;
  }
  .header {
    padding: 1.5rem 1rem;
  }
  .nav {
    margin-top: 1.5rem;
  }
  .nav-button {
    max-width: 250px;
    padding: 12px 20px;
    width: 100%;
  }
  .content {
    padding: 1rem;
  }
  .hero-section h1 {
    font-size: 1.8rem;
  }
  .features-grid {
    gap: 1rem;
  }
}
.images-container {
  margin: 0 auto;
  max-width: 1200px;
  padding: 20px;
}
.loading {
  color: #666;
  font-size: 1.2em;
  padding: 40px;
  text-align: center;
}
.calendar-header {
  align-items: center;
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 30px;
}
.calendar-header h2 {
  color: #333;
  font-size: 1.8em;
  margin: 0;
  min-width: 200px;
  text-align: center;
}
.nav-btn {
  align-items: center;
  background: #007bff;
  border: none;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  font-size: 1.5em;
  height: 40px;
  justify-content: center;
  transition: background 0.2s;
  width: 40px;
}
.nav-btn:hover {
  background: #0056b3;
}
.nav-btn.disabled,
.nav-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}
.nav-btn.disabled:hover,
.nav-btn:disabled:hover {
  background: #ccc;
}
.load-more-btn {
  background: #6c757d;
  border: none;
  border-radius: 12px;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  margin-top: 1.5rem;
  min-width: 170px;
  padding: 16px;
  transition: all 0.3s ease;
  width: 20%;
}
.load-more-btn:hover {
  background: #5a6268;
  transform: translateY(-2px);
}
.calendar-desktop {
  display: block;
}
.calendar-grid {
  grid-gap: 2px;
  background: #ddd;
  border-radius: 8px;
  display: grid;
  gap: 2px;
  grid-template-columns: repeat(7, 1fr);
  overflow: hidden;
}
.day-header {
  background: #f8f9fa;
  color: #666;
  font-weight: 700;
  padding: 12px;
  text-align: center;
}
.calendar-day {
  background: #fff;
  display: flex;
  flex-direction: column;
  min-height: 120px;
  position: relative;
}
.calendar-day.future-day {
  background: #eee;
  color: #666;
}
.calendar-day.future-day .day-number {
  color: #666;
}
.calendar-day.past-day {
  background: #f5f5f5;
}
.day-number {
  color: #333;
  font-weight: 700;
  padding: 8px;
}
.day-image {
  flex: 1 1;
  padding: 0 8px 8px;
}
.day-image img {
  border-radius: 4px;
  cursor: pointer;
  height: 80px;
  object-fit: contain;
  transition: transform 0.2s;
  width: 100%;
}
.day-image img:hover {
  transform: scale(1.05);
}
.calendar-mobile {
  display: none;
}
.mobile-day {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px #0000001a;
  margin-bottom: 15px;
  overflow: hidden;
}
.mobile-day.past-day {
  background: #f9f9f9;
}
.mobile-date {
  background: #f8f9fa;
  border-bottom: 1px solid #eee;
  color: #333;
  font-weight: 700;
  padding: 12px 16px;
}
.mobile-image {
  padding: 16px;
}
.mobile-image img {
  border-radius: 8px;
  max-height: 300px;
  object-fit: contain;
  width: 100%;
}
.upload-section {
  padding: 8px;
  text-align: center;
}
.upload-btn {
  background: #28a745;
  border-radius: 3px;
  display: inline-block;
  font-size: 0.75em;
  padding: 4px 8px;
  text-decoration: none;
}
.upload-btn:hover:not(:disabled) {
  background: #218838;
}
.upload-btn:disabled {
  background: #6c757d;
  opacity: 0.6;
}
.upload-spinner {
  padding: 8px;
}
.image-loading-spinner,
.upload-spinner {
  align-items: center;
  display: flex;
  justify-content: center;
}
.image-loading-spinner {
  flex: 1 1;
  padding: 20px;
}
.image-loading-spinner .spinner {
  animation: spin 1s linear infinite;
  border: 2px solid #f3f3f3;
  border-radius: 50%;
  border-top-color: #007bff;
  height: 20px;
  width: 20px;
}
.spinner {
  animation: spin 1s linear infinite;
  border: 2px solid #f3f3f3;
  border-radius: 50%;
  border-top-color: #28a745;
  height: 16px;
  width: 16px;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}
.upload-btn.disabled {
  background: #6c757d !important;
  cursor: not-allowed !important;
  opacity: 0.6;
}
.upload-date-btn {
  background: none;
  border: none;
  color: #007bff;
  cursor: pointer;
  font-size: inherit;
  font-weight: 700;
  padding: 0;
  text-decoration: underline;
  transition: color 0.2s;
}
.upload-date-btn:hover:not(.disabled) {
  color: #0056b3;
}
.upload-date-btn.disabled {
  color: #6c757d;
  cursor: not-allowed;
  text-decoration: none;
}
@media (max-width: 768px) {
  .calendar-desktop {
    display: none;
  }
  .calendar-mobile {
    display: block;
  }
  .calendar-header {
    flex-direction: column;
    gap: 15px;
  }
  .calendar-header h2 {
    font-size: 1.5em;
  }
  .images-container {
    padding: 15px;
  }
}
@media (max-width: 480px) {
  .calendar-grid {
    gap: 1px;
    grid-template-columns: repeat(7, 1fr);
  }
  .calendar-day {
    min-height: 80px;
  }
  .day-image img {
    height: 50px;
  }
}
.calendar-image {
  border-radius: 4px;
  cursor: pointer;
  height: 80px;
  object-fit: cover;
  transition: transform 0.2s;
  width: 100%;
}
.calendar-image:hover {
  transform: scale(1.05);
}
.popup-overlay {
  background: #000000e6;
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1000;
}
.popup-content,
.popup-overlay {
  align-items: center;
  display: flex;
  justify-content: center;
}
.popup-content {
  height: 90vh;
  position: relative;
  width: 90vw;
}
.popup-image {
  border-radius: 8px !important;
  height: 100% !important;
  object-fit: contain !important;
  width: 100% !important;
}
.popup-close {
  align-items: center;
  background: #fff;
  border: none;
  border-radius: 50%;
  box-shadow: 0 2px 8px #0000004d;
  cursor: pointer;
  display: flex;
  font-size: 24px;
  height: 40px;
  justify-content: center;
  position: absolute;
  right: -15px;
  top: -15px;
  width: 40px;
  z-index: 1001;
}
.popup-close:hover {
  background: #f0f0f0;
}
.upload-container {
  align-items: center;
  background: #f8f9fa;
  display: flex;
  justify-content: center;
  min-height: 100vh;
  padding: 20px;
}
.upload-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 6px #0000001a;
  max-width: 500px;
  padding: 40px;
  text-align: center;
  width: 100%;
}
.upload-card h1 {
  color: #333;
  margin-bottom: 10px;
}
.date {
  color: #666;
  font-size: 1.1em;
  margin-bottom: 30px;
}
.upload-area {
  margin: 30px 0;
}
.file-input {
  border: 2px dashed #ddd;
  border-radius: 8px;
  cursor: pointer;
  margin-bottom: 20px;
  padding: 10px;
  width: 100%;
}
.preview {
  margin: 20px 0;
}
.preview-image {
  border-radius: 8px;
  box-shadow: 0 2px 4px #0000001a;
  max-height: 300px;
  max-width: 300px;
}
.current-image {
  margin: 20px 0;
  text-align: center;
}
.current-image h3 {
  color: #333;
  margin-bottom: 10px;
}
.current-image-display {
  border-radius: 8px;
  box-shadow: 0 2px 4px #0000001a;
  max-height: 300px;
  max-width: 300px;
}
.upload-btn {
  background: #007bff;
  border: none;
  border-radius: 6px;
  color: #fff;
  cursor: pointer;
  font-size: 1.1em;
  padding: 12px 30px;
  transition: background 0.2s;
}
.upload-btn:hover:not(:disabled) {
  background: #0056b3;
}
.upload-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}
.message {
  border-radius: 6px;
  font-weight: 700;
  margin: 20px 0;
  padding: 12px;
}
.message.success {
  background: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
}
.message.error {
  background: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
}
.info {
  background: #f8f9fa;
  border-radius: 8px;
  margin-top: 30px;
  padding: 20px;
  text-align: left;
}
.info p {
  color: #666;
  font-size: 0.9em;
  margin: 8px 0;
}
@media (max-width: 768px) {
  .upload-card {
    margin: 10px;
    padding: 20px;
  }
  .preview-image {
    max-height: 250px;
    max-width: 250px;
  }
}
.video-container {
  margin: 0 auto;
  max-width: 1200px;
  padding: 20px;
  text-align: center;
}
.video-player-section {
  margin-bottom: 30px;
}
.video-controls {
  align-items: center;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px #0000001a;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
  padding: 20px;
}
.render-section {
  margin: 20px 0;
  text-align: center;
}
.render-button {
  background: #667eea;
  border: none;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  padding: 12px 24px;
  transition: background 0.3s;
}
.render-button:hover:not(:disabled) {
  background: #5a67d8;
}
.render-button:disabled {
  background: #ccc;
  cursor: not-allowed;
}
.render-progress {
  background: #f8f9fa;
  border-radius: 8px;
  margin-top: 15px;
  padding: 15px;
}
.render-progress a {
  color: #667eea;
  font-weight: 600;
  text-decoration: none;
}
.render-progress a:hover {
  text-decoration: underline;
}
.download-button {
  background: #28a745;
  border: none;
  border-radius: 6px;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  margin-top: 10px;
  padding: 10px 20px;
  transition: background 0.3s;
}
.download-button:hover {
  background: #218838;
}
.video-options {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.video-options input[type='range'],
.video-options select {
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  padding: 8px 12px;
}
.video-options input[type='color'] {
  border: 1px solid #ddd;
  border-radius: 4px;
  cursor: pointer;
  height: 35px;
  width: 50px;
}
.date-inputs {
  display: flex;
  gap: 20px;
  justify-content: center;
}
.input-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.input-group label {
  color: #333;
  font-weight: 600;
}
.input-group input {
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  padding: 8px 12px;
}
.generate-btn {
  background: #007bff;
  border: none;
  border-radius: 6px;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 24px;
  transition: background 0.2s;
}
.generate-btn:hover:not(:disabled) {
  background: #0056b3;
}
.generate-btn:disabled {
  background: #6c757d;
  cursor: not-allowed;
}
.preview-section {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px #0000001a;
  padding: 20px;
}
.image-preview {
  grid-gap: 15px;
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  margin-top: 15px;
}
.preview-item {
  position: relative;
  text-align: center;
}
.preview-item .thumbnail {
  border: 1px solid #ddd;
  border-radius: 4px;
  height: 60px;
  object-fit: contain;
  width: 80px;
}
.image-checkbox {
  left: 5px;
  position: absolute;
  top: 5px;
  z-index: 1;
}
.preview-item img {
  border: 1px solid #ddd;
  border-radius: 4px;
  height: 80px;
  object-fit: cover;
  width: 100%;
}
.preview-item span {
  color: #666;
  display: block;
  font-size: 12px;
  margin-top: 5px;
}
.video-player-section {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px #0000001a;
  margin-top: 20px;
  padding: 20px;
  text-align: center;
}
@media (max-width: 768px) {
  .date-inputs {
    flex-direction: column;
    gap: 15px;
  }
  .image-preview {
    gap: 10px;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  }
  .video-container {
    padding: 10px;
  }
  .no-images-message {
    font-size: 16px !important;
    height: 300px !important;
  }
}
.auth-container {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 70vh;
  padding: 20px;
}
.auth-form {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 40px #0000001a;
  max-width: 420px;
  padding: 3rem;
  width: 100%;
}
.auth-form h2 {
  color: #333;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
  text-align: center;
}
.auth-form input {
  background: #f8f9fa;
  border: 2px solid #e1e5e9;
  border-radius: 12px;
  box-sizing: border-box;
  font-size: 16px;
  margin-bottom: 1.5rem;
  padding: 16px;
  transition: all 0.3s ease;
  width: 100%;
}
.auth-form input:focus {
  background: #fff;
  border-color: #667eea;
  box-shadow: 0 0 0 3px #667eea1a;
  outline: none;
}
.auth-form button {
  background: #6c757d;
  border: none;
  border-radius: 12px;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 1.5rem;
  padding: 16px;
  transition: all 0.3s ease;
  width: 100%;
}
.auth-form button:hover:not(:disabled) {
  background: #5a6268;
  transform: translateY(-2px);
}
.auth-form button:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
}
.auth-form p {
  color: #666;
  margin: 0;
  text-align: center;
}
.link-button {
  background: none;
  border: none;
  color: #6c757d;
  cursor: pointer;
  font-size: inherit;
  font-weight: 600;
  padding: 0;
  text-decoration: none;
  transition: color 0.3s ease;
  width: auto;
}
.link-button:hover {
  color: #f5f5f5;
  text-decoration: underline;
}
.error {
  background: linear-gradient(135deg, #ff6b6b, #ee5a52);
  box-shadow: 0 4px 15px #ff6b6b4d;
}
.error,
.success {
  border-radius: 12px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 1.5rem;
  padding: 16px;
  text-align: center;
}
.success {
  background: linear-gradient(135deg, #51cf66, #40c057);
  box-shadow: 0 4px 15px #51cf664d;
}
.language-selector {
  border: 1px solid #ddd;
  border-radius: 4px;
  display: flex;
  gap: 2px;
  overflow: hidden;
}
.lang-btn {
  background: #f8f9fa;
  border: none;
  color: #666;
  cursor: pointer;
  font-size: 10px;
  font-weight: 600;
  min-width: 24px;
  padding: 4px 8px;
  transition: all 0.2s;
}
.lang-btn:hover {
  background: #e9ecef;
}
.lang-btn.active {
  background: #6c757d;
  color: #fff;
}
.lang-btn.active:hover {
  background: #555d63;
}
/*# sourceMappingURL=main.9f9eac89.css.map*/
