body {
  font-family: Arial, sans-serif;
  margin: 0;
  background-color: #f4f4f4;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  max-width: 800px;
  margin: 20px auto;
  padding: 0 15px;
  flex: 1;
}

/* Header Stilleri */
.header {
  background-color: #525659;
  padding: 10px 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

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

.logo {
  height: 40px;
  width: auto;
  transition: transform 0.2s;
}

.logo:hover {
  transform: scale(1.05);
}

.site-title {
  color: white;
  font-size: 24px;
  margin: 0 0 0 15px;
  font-weight: normal;
}

@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    align-items: flex-start;
  }
  .logo {
    height: 40px;
  }
  .site-title {
    font-size: 20px;
    margin: 10px 0 0;
  }
}

@media (max-width: 480px) {
  .logo {
    height: 35px;
  }
  .site-title {
    font-size: 18px;
  }
}

/* Mevcut Stiller */
.media-controls {
  margin-bottom: 20px;
}

.file-input-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.file-button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #fdb900;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
}

.file-button:hover {
  background: #d89f02;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.file-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.file-icon {
  transition: transform 0.2s;
}

.file-button:hover .file-icon {
  transform: scale(1.1);
}

#fileInput {
  display: none;
}

.file-name {
  font-size: 14px;
  color: #333;
}

.video-container {
  position: fixed;
  top: 20px;
  left: 20px;
  width: 320px;
  height: auto;
  background: #000;
  border: 2px solid #333;
  z-index: 1000;
  display: none;
}

.video-container.right {
  left: auto;
  right: 20px;
}

#mediaPlayer, #audioPlayer {
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
}

.controls-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  padding: 10px;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: white;
}

.button-group {
  display: flex;
  gap: 5px;
}

button {
  padding: 6px 12px;
  cursor: pointer;
  background: #555;
  color: white;
  border: none;
  border-radius: 3px;
}

button:hover {
  background: #777;
}

.speed-control {
  display: flex;
  align-items: center;
  gap: 5px;
  color: white;
}

#speedControl {
  width: 80px;
}

#speedValue {
  font-size: 14px;
}

.progress-bar {
  width: 100%;
  height: 10px;
  background: #000;
  cursor: pointer;
  position: relative;
}

.progress-fill {
  height: 100%;
  background: #f00;
  width: 0;
  transition: width 0.1s linear;
}

.transcript {
  border: 1px solid #ccc;
  padding: 10px;
  background: white;
}

.editor-toolbar {
  margin-bottom: 10px;
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

.editor-toolbar button {
  background: #333;
}

#transcriptArea {
  min-height: 300px;
  outline: none;
  font-size: 16px;
}

#transcriptArea:empty:before {
  content: attr(placeholder);
  color: #999;
}

/* Modal Stilleri */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: white;
  padding: 20px;
  border-radius: 5px;
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.modal-content h2 {
  margin-top: 0;
}

.modal-content ul {
  padding-left: 20px;
}
.modal-content li {
  padding-bottom: 10px;
}
.modal-content label {
  display: block;
  margin: 10px 0;
}

.modal-content button {
  background: #fdb900;
  padding: 8px 16px;
}

.modal-content button:hover {
  background: #e0a502;

}

/* Footer Stilleri */
.footer {
  background-color: #525659;
  color: white;
  text-align: center;
  padding: 15px 0;
  margin-top: 20px;
}

.footer p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.footer a {
  color: #66b3ff;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

@media (max-width: 480px) {
  .footer p {
    font-size: 12px;
    padding: 0 10px;
  }
}