* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  background-color: #02001c;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.settings-page {
  width: 100%;
  max-width: 500px;
  padding: 20px;
}

.section {
  background-color: #29294d;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
}

h2 {
  font-size: 1.5em;
  margin-bottom: 10px;
}

p {
  margin-bottom: 15px;
}

input[type="password"],
input[type="file"],
input[type="text"] {
  width: 100%;
  padding: 10px;
  margin: 5px 0 15px;
  border-radius: 5px;
  border: none;
  outline: none;
}

button {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  background-color: #5050c8;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background-color: #3b3ba3;
}

.progress-bar {
  width: 100%;
  height: 10px;
  background-color: #3a3a6d;
  border-radius: 5px;
  overflow: hidden;
  margin-top: 10px;
}

.progress-bar-fill {
  height: 100%;
  width: 0;
  background-color: #5050c8;
  transition: width 0.2s;
}

#progressText {
  text-align: center;
  margin-top: 5px;
}


/* URL container for the returned URL and copy button */
.url-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.url-text {
  color: #fff;
  font-size: 1em;
  word-break: break-all;
  /* لضمان ظهور النص الطويل بشكل مناسب */
}

#copyButton {
  width: 30px;
  height: 30px;
  background-color: #5050c8;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="white" class="bi bi-clipboard" viewBox="0 0 16 16"><path d="M10 1.5H9.5a.5.5 0 0 0-.5.5v1H7V2a.5.5 0 0 0-.5-.5H6a.5.5 0 0 0-.5.5v1H4a1 1 0 0 0-1 1v11a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1h-1.5V2a.5.5 0 0 0-.5-.5H10ZM6 1h4v1H6V1Z"/><path d="M5 5v9h6V5H5Z"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
}

#copyButton:hover {
  background-color: #3b3ba3;
}