/*!******************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[5].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[5].use[3]!./src/components/VideoGenerationModal.module.css ***!
  \******************************************************************************************************************************************************************************************************************************************************************************************/
.VideoGenerationModal_overlay__DeO9u {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.VideoGenerationModal_modal__5rigd {
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  width: 90%;
  max-width: 750px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  animation: VideoGenerationModal_slideIn__F5hLh 0.3s ease-out;
}

@keyframes VideoGenerationModal_slideIn__F5hLh {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.VideoGenerationModal_header__qtaEe {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #e0e0e0;
}

.VideoGenerationModal_header__qtaEe h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

.VideoGenerationModal_closeButton__GhOC0 {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #999;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: all 0.2s;
}

.VideoGenerationModal_closeButton__GhOC0:hover:not(:disabled) {
  background-color: #f0f0f0;
  color: #333;
}

.VideoGenerationModal_closeButton__GhOC0:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.VideoGenerationModal_content__f0hqt {
  padding: 20px;
  flex: 1 1;
  overflow-y: auto;
}

.VideoGenerationModal_generatorSection__Fx9P3 {
  margin-bottom: 24px;
}

.VideoGenerationModal_generatorGrid__42u71 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  grid-gap: 12px;
  gap: 12px;
  margin-top: 12px;
}

.VideoGenerationModal_generatorCard__WkBys {
  padding: 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  background: white;
  text-align: center;
}

.VideoGenerationModal_generatorCard__WkBys:hover {
  border-color: #FF6B35;
  background-color: #fff8f5;
}

.VideoGenerationModal_generatorCard__WkBys.VideoGenerationModal_selected__gFyms {
  border-color: #FF6B35;
  background-color: #fff0e6;
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.VideoGenerationModal_generatorName__cVOs9 {
  font-weight: 600;
  color: #333;
  font-size: 14px;
  margin-bottom: 8px;
}

.VideoGenerationModal_generatorDesc__DE7xy {
  font-size: 12px;
  color: #666;
  line-height: 1.4;
}

.VideoGenerationModal_scriptSection__CO0C1 {
  margin-top: 20px;
}

.VideoGenerationModal_label__sx6xT {
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
  color: #333;
  font-size: 14px;
}

.VideoGenerationModal_textarea__PBi6J {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 14px;
  resize: vertical;
  box-sizing: border-box;
  transition: border-color 0.2s;
}

.VideoGenerationModal_textarea__PBi6J:focus {
  outline: none;
  border-color: #FF6B35;
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.VideoGenerationModal_textarea__PBi6J:disabled {
  background-color: #f5f5f5;
  cursor: not-allowed;
  opacity: 0.6;
}

.VideoGenerationModal_error__Wise0 {
  margin-top: 12px;
  padding: 10px;
  background-color: #ffebee;
  color: #c62828;
  border-radius: 4px;
  font-size: 13px;
  border-left: 3px solid #c62828;
}

.VideoGenerationModal_loading__CcoFS {
  margin-top: 12px;
  padding: 12px;
  background-color: #e3f2fd;
  color: #1565c0;
  border-radius: 4px;
  font-size: 13px;
  border-left: 3px solid #1565c0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.VideoGenerationModal_loading__CcoFS::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid #1565c0;
  border-top-color: transparent;
  border-radius: 50%;
  animation: VideoGenerationModal_spin___Wtka 0.6s linear infinite;
}

@keyframes VideoGenerationModal_spin___Wtka {
  to {
    transform: rotate(360deg);
  }
}

.VideoGenerationModal_info__d93UF {
  margin-top: 12px;
  padding: 10px;
  background-color: #fff8e1;
  color: #f57f17;
  border-radius: 4px;
  font-size: 13px;
  border-left: 3px solid #f57f17;
  margin-bottom: 0;
}

.VideoGenerationModal_footer__mwokp {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding: 20px;
  border-top: 1px solid #e0e0e0;
}

.VideoGenerationModal_cancelButton__reX5U,
.VideoGenerationModal_generateButton__exmMF {
  padding: 10px 20px;
  border-radius: 4px;
  border: none;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.VideoGenerationModal_cancelButton__reX5U {
  background-color: #f0f0f0;
  color: #333;
  border: 1px solid #ddd;
}

.VideoGenerationModal_cancelButton__reX5U:hover:not(:disabled) {
  background-color: #e0e0e0;
}

.VideoGenerationModal_cancelButton__reX5U:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.VideoGenerationModal_generateButton__exmMF {
  background-color: #FF6B35;
  color: white;
  border: none;
}

.VideoGenerationModal_generateButton__exmMF:hover:not(:disabled) {
  background-color: #E55A24;
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.VideoGenerationModal_generateButton__exmMF:disabled {
  background-color: #ccc;
  cursor: not-allowed;
  opacity: 0.6;
}

@media (max-width: 600px) {
  .VideoGenerationModal_modal__5rigd {
    width: 95%;
    max-height: 85vh;
  }

  .VideoGenerationModal_header__qtaEe {
    padding: 16px;
  }

  .VideoGenerationModal_header__qtaEe h2 {
    font-size: 16px;
  }

  .VideoGenerationModal_content__f0hqt {
    padding: 16px;
  }

  .VideoGenerationModal_generatorGrid__42u71 {
    grid-template-columns: repeat(2, 1fr);
  }

  .VideoGenerationModal_footer__mwokp {
    padding: 16px;
    flex-direction: column-reverse;
  }

  .VideoGenerationModal_cancelButton__reX5U,
  .VideoGenerationModal_generateButton__exmMF {
    width: 100%;
  }
}

/*!******************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[5].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[5].use[3]!./src/app/scripts/scripts.module.css ***!
  \******************************************************************************************************************************************************************************************************************************************************************************/
.scripts_container__sz_oG {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
  background: #f5f5f5;
  min-height: 100vh;
}

.scripts_header__EvUMZ {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.scripts_title__b2No_ {
  margin: 0;
  font-size: 2.5rem;
  font-weight: 700;
}

.scripts_subtitle__stMWU {
  margin: 10px 0 0 0;
  opacity: 0.9;
  font-size: 1.1rem;
}

.scripts_errorMessage__jScbB {
  background-color: #fee2e2;
  border: 1px solid #fca5a5;
  color: #991b1b;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.scripts_platformTabs__gfaAx {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.scripts_tab__d1m_g {
  flex: 1 1;
  min-width: 150px;
  padding: 12px 24px;
  border: 2px solid #ddd;
  background: white;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #333;
}

.scripts_tab__d1m_g:hover:not(:disabled) {
  border-color: #667eea;
  background: #f0f4ff;
  transform: translateY(-2px);
}

.scripts_tabActive__vcfqh {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.scripts_tab__d1m_g:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.scripts_controls__tAznA {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.scripts_refreshButton__RPahV {
  padding: 12px 24px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  background: white;
  color: #333;
}

.scripts_refreshButton__RPahV:hover:not(:disabled) {
  border-color: #667eea;
  background: #f0f4ff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.scripts_refreshButton__RPahV:active:not(:disabled) {
  transform: translateY(0);
}

.scripts_refreshButton__RPahV:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.scripts_tableContainer__tK2Kw {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  overflow-x: auto;
}

.scripts_table__zsOFO {
  width: 100%;
  border-collapse: collapse;
}

.scripts_table__zsOFO thead {
  background-color: #f5f5f5;
  border-bottom: 2px solid #e0e0e0;
}

.scripts_table__zsOFO th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  color: #333;
  font-size: 0.95rem;
}

.scripts_table__zsOFO td {
  padding: 1rem;
  border-bottom: 1px solid #e0e0e0;
  color: #555;
}

.scripts_table__zsOFO tbody tr:last-child td {
  border-bottom: none;
}

.scripts_table__zsOFO tbody tr:hover {
  background-color: #f9f9f9;
}

.scripts_summaryCell__1eTNt,
.scripts_scriptCell__zBJmE {
  max-width: 300px;
}

.scripts_summaryCell__1eTNt details,
.scripts_scriptCell__zBJmE details {
  cursor: pointer;
}

.scripts_summaryCell__1eTNt details summary,
.scripts_scriptCell__zBJmE details summary {
  color: #667eea;
  font-weight: 600;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.scripts_summaryCell__1eTNt details summary:hover,
.scripts_scriptCell__zBJmE details summary:hover {
  text-decoration: underline;
}

.scripts_summaryCell__1eTNt details p,
.scripts_scriptCell__zBJmE details p {
  margin: 0.5rem 0 0;
  padding-top: 0.5rem;
  border-top: 1px solid #e0e0e0;
  color: #555;
  line-height: 1.5;
  max-height: 300px;
  overflow-y: auto;
  white-space: pre-wrap;
  word-wrap: break-word;
}

.scripts_scriptContent__ENuY0 {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.scripts_copyButton__m8Yjc {
  padding: 0.5rem 1rem;
  background-color: #2196F3;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  align-self: flex-start;
}

.scripts_copyButton__m8Yjc:hover {
  background-color: #1976D2;
  box-shadow: 0 2px 8px rgba(33, 150, 243, 0.3);
}

.scripts_dateCell__Z2Ce5 {
  color: #888;
  font-size: 0.9rem;
}

.scripts_actionsCell__nFWVY {
  text-align: center;
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.scripts_videoButton__QgCxx {
  padding: 0.5rem 1rem;
  background-color: #FF6B35;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.scripts_videoButton__QgCxx:hover:not(:disabled) {
  background-color: #E55A24;
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.scripts_videoButton__QgCxx:active:not(:disabled) {
  transform: translateY(0);
}

.scripts_videoButton__QgCxx:disabled {
  background-color: #ccc;
  cursor: not-allowed;
  opacity: 0.6;
}

.scripts_deleteButton__hFuOt {
  padding: 0.5rem 1rem;
  background-color: #f44336;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.scripts_deleteButton__hFuOt:hover {
  background-color: #d32f2f;
  box-shadow: 0 2px 8px rgba(244, 67, 54, 0.3);
}

.scripts_deleteButton__hFuOt:active {
  transform: translateY(0);
}

.scripts_badgeSuccess__AxR5o {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  background-color: #dcfce7;
  color: #166534;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
}

.scripts_badgePending__E7wrO {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  background-color: #fef3c7;
  color: #92400e;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
}

.scripts_badgeError__AcBO6 {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
}

.scripts_badge__FCGqH {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  background-color: #e0e7ff;
  color: #4f46e5;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
}

.scripts_noData__qb0Qv {
  text-align: center;
  padding: 2rem;
  color: #888;
  font-size: 1rem;
}

.scripts_loading__Hmv4_ {
  text-align: center;
  padding: 2rem;
  color: #555;
  font-size: 1.1rem;
  font-weight: 600;
}

.scripts_error__ZC38z {
  color: #991b1b;
  font-weight: 500;
}

.scripts_pending__wO8Md {
  color: #92400e;
  font-weight: 500;
}

@media (max-width: 768px) {
  .scripts_container__sz_oG {
    padding: 1rem;
  }

  .scripts_title__b2No_ {
    font-size: 1.8rem;
  }

  .scripts_subtitle__stMWU {
    font-size: 0.95rem;
  }

  .scripts_platformTabs__gfaAx {
    flex-direction: column;
  }

  .scripts_tab__d1m_g {
    width: 100%;
  }

  .scripts_controls__tAznA {
    flex-direction: column;
  }

  .scripts_refreshButton__RPahV {
    width: 100%;
  }

  .scripts_table__zsOFO {
    font-size: 0.9rem;
  }

  .scripts_table__zsOFO th,
  .scripts_table__zsOFO td {
    padding: 0.75rem 0.5rem;
  }

  .scripts_summaryCell__1eTNt,
  .scripts_scriptCell__zBJmE {
    max-width: 150px;
  }

  .scripts_summaryCell__1eTNt details p,
  .scripts_scriptCell__zBJmE details p {
    max-height: 200px;
  }
}

@media (max-width: 480px) {
  .scripts_title__b2No_ {
    font-size: 1.5rem;
  }

  .scripts_table__zsOFO th,
  .scripts_table__zsOFO td {
    padding: 0.5rem;
    font-size: 0.8rem;
  }

  .scripts_summaryCell__1eTNt,
  .scripts_scriptCell__zBJmE {
    max-width: 100px;
  }

  .scripts_copyButton__m8Yjc,
  .scripts_deleteButton__hFuOt {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
  }
}

