/* style.css - Main styles for Multi Downloader */

body {
  font-family: Arial, sans-serif;
  margin: 0 auto;
  padding: 20px;
  background: #f5f5f5;
}

h1 {
  color: #333;
  border-bottom: 2px solid #4caf50;
  padding-bottom: 10px;
}

.tab {
  overflow: hidden;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
  border-radius: 5px 5px 0 0;
}

.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  font-size: 17px;
}

.tab button:hover {
  background-color: #ddd;
}

.tab button.active {
  background-color: #4caf50;
  color: white;
}

.tabcontent {
  display: none;
  padding: 20px;
  border: 1px solid #ccc;
  border-top: none;
  background: white;
  border-radius: 0 0 5px 5px;
}

textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: monospace;
}

button {
  background-color: #4caf50;
  color: white;
  padding: 10px 20px;
  margin: 10px 5px 0 0;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
}

button:hover {
  background-color: #45a049;
}

button:disabled {
  background-color: #cccccc;
  cursor: not-allowed;
}

#stopBtn {
  background-color: #f44336;
}

#stopBtn:hover {
  background-color: #da190b;
}

#logs {
  background: #1e1e1e;
  color: #d4d4d4;
  padding: 10px;
  font-family: monospace;
  height: 400px;
  overflow-y: auto;
  border-radius: 4px;
  font-size: 12px;
}

.log-line {
  border-bottom: 1px solid #333;
  padding: 2px 0;
}

.info {
  color: #999;
  font-size: 12px;
  margin-top: 5px;
}

.global-session {
  margin: 15px 0;
  padding: 12px 15px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 8px;
  color: white;
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.global-session label {
  font-weight: bold;
  font-size: 14px;
}

.global-session select {
  padding: 8px 12px;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  background: white;
  cursor: pointer;
  min-width: 200px;
}

.global-session input {
  padding: 8px 12px;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  width: 200px;
}

.global-session .custom-input {
  display: none;
}

.session-note {
  font-size: 12px;
  opacity: 0.9;
}