* {
  box-sizing: border-box;
}

::-webkit-scrollbar {
  width: 3px;
  height: 3px;
  background-color: #ffffff;
}

::-webkit-scrollbar-thumb {
  background: #40cf65;
  border-radius: 5px;
}

body {
  background: #ffffff;
  margin: 0;
  padding: 0;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  line-height: 1.5;
  color: #333333;
}

a {
  text-decoration: none;
  color: #40cf65;
}
a:hover {
  text-decoration: underline;
}

.app {
  max-width: 1260px;
  margin: 0 auto;
  padding: 1rem;
}

.header {
  background-color: #f0f0f0;
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  text-align: center;
}
.header h1 {
  font-size: 1.8rem;
  color: #333333;
  margin: 0;
}

.tabs {
  margin-top: 1rem;
}
.tabs .tab-list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  background: #f0f0f0;
  border-bottom: 1px solid rgb(214.5, 214.5, 214.5);
  border-radius: 8px 8px 0 0;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  position: relative;
}
.tabs .tab-list li .tab-link {
  display: block;
  padding: 0.75rem 1.25rem;
  text-decoration: none;
  color: #333333;
  font-weight: 500;
  transition: all 0.2s ease;
  border-bottom: 2px solid transparent;
}
.tabs .tab-list li .tab-link:hover {
  background-color: rgb(252.75, 252.75, 252.75);
  color: #40cf65;
}
.tabs .tab-list li .tab-link.active {
  background-color: rgb(252.75, 252.75, 252.75);
  color: #40cf65;
  border-bottom-color: #40cf65;
}
.tabs .tab-list #owner {
  color: #333333;
  font-size: 18px;
  font-weight: bold;
  position: absolute;
  right: 1rem;
}

.content {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.content h2 {
  color: #333333;
  margin-top: 0;
  margin-bottom: 1rem;
}
.content p {
  color: rgb(12.75, 12.75, 12.75);
  margin: 0;
}

.spinner-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  background: transparent;
}

.loading-cubes {
  display: inline-block;
  position: relative;
  width: 32px;
  height: 32px;
}
.loading-cubes .cube {
  display: inline-block;
  position: absolute;
  width: 8px;
  height: 8px;
  background: #40cf65;
  animation: loadingCubes 0.8s infinite ease-in-out;
  transform-origin: center bottom;
}
.loading-cubes .cube:nth-child(1) {
  left: 0px;
  animation-delay: 0s;
}
.loading-cubes .cube:nth-child(2) {
  left: 12px;
  animation-delay: 0.2s;
}
.loading-cubes .cube:nth-child(3) {
  left: 24px;
  animation-delay: 0.4s;
}

@keyframes loadingCubes {
  0%, 100% {
    transform: scale(1) translateY(0);
  }
  50% {
    transform: scale(1) translateY(-5px);
  }
}
@keyframes spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.add-account-form textarea,
.add-account-form input[type=text],
.add-proxy-form textarea,
.add-proxy-form input[type=text],
.add-parsing-form textarea,
.add-parsing-form input[type=text] {
  width: 100%;
  padding: 0.5rem;
  border: none;
  outline: none;
  border-radius: 4px;
  background-color: #f0f0f0;
  color: #333333;
  resize: vertical;
  font-family: sans-serif;
  margin-bottom: 0.5rem;
}
.add-account-form button,
.add-proxy-form button,
.add-parsing-form button {
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  font-family: inherit;
  padding: 0.5rem 1rem;
  background-color: #f0f0f0;
  color: #333333;
}
.add-account-form button:hover,
.add-proxy-form button:hover,
.add-parsing-form button:hover {
  background-color: rgb(44.1841004184, 175.8158995816, 78.2426778243);
  color: #ffffff;
}

.auth-container {
  max-width: 400px;
  margin: 50px auto;
  padding: 2rem;
  background-color: #f0f0f0;
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  text-align: center;
}
.auth-container h2 {
  color: #333333;
  margin-bottom: 1rem;
}
.auth-container .auth-form input[type=text],
.auth-container .auth-form input[type=password] {
  width: calc(100% - 20px);
  padding: 10px;
  margin-bottom: 1rem;
  border: none;
  border-radius: 4px;
  background-color: rgb(227.25, 227.25, 227.25);
  color: #333333;
  font-size: 1rem;
  outline: none;
}
.auth-container .auth-form button {
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  font-family: inherit;
  width: 100%;
  padding: 0.75rem;
  background-color: #40cf65;
  color: #ffffff;
  font-size: 1rem;
}
.auth-container .auth-form button:hover {
  background-color: rgb(44.1841004184, 175.8158995816, 78.2426778243);
}
.auth-container .error-message,
.auth-container .success-message {
  margin-bottom: 1rem;
  padding: 0.75rem;
  border-radius: 4px;
  text-align: left;
}
.auth-container .error-message {
  background-color: #ff4141;
  color: #ffffff;
}
.auth-container .success-message {
  background-color: #4caf50;
  color: #ffffff;
}

.account-card {
  background-color: #f0f0f0;
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  color: #333333;
  position: relative;
  cursor: pointer;
  border: 2px solid #f0f0f0;
  transition: all 0.2s ease;
}
.account-card:hover {
  border-color: #40cf65;
}
.account-card .account-summary {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.account-card .account-summary .flex {
  display: flex;
  flex-direction: column;
}
.account-card .account-summary p {
  margin: 0;
}
.account-card .account-buttons {
  position: absolute;
  top: 7px;
  right: 7px;
  display: flex;
  gap: 10px;
}
.account-card .account-status-flex {
  position: absolute;
  bottom: 7px;
  right: 7px;
  font-size: 0.9rem;
  display: flex;
  gap: 10px;
}
.account-card .account-status-flex p {
  margin: 0;
  padding: 0 10px;
  border-radius: 8px;
  font-weight: bold;
}
.account-card .account-status-flex .account-status p {
  background-color: #ffffff;
}
.account-card .account-status-flex .link-status p,
.account-card .account-status-flex .bio-status p,
.account-card .account-status-flex .ava-status p {
  background-color: #ff4141 !important;
  color: #ffffff;
}
.account-card .account-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.account-card .account-content .account-details,
.account-card .account-content .account-stats,
.account-card .account-content .account-lastLog {
  margin-top: 0.5rem;
  max-width: 33%;
}
.account-card .account-content .account-details p,
.account-card .account-content .account-stats p,
.account-card .account-content .account-lastLog p {
  margin: 0;
}

.proxy-card {
  background-color: #f0f0f0;
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #333333;
  position: relative;
}
.proxy-card .proxy-info {
  display: flex;
  gap: 20px;
  align-items: center;
}
.proxy-card .proxy-info p {
  margin: 0;
}
.proxy-card .proxy-info code {
  background-color: #ffffff;
  padding: 2px 6px;
  border-radius: 4px;
  font-family: "Courier New", monospace;
}

.parsing-card {
  background-color: #f0f0f0;
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  color: #333333;
}
.parsing-card .parsing-summary strong {
  color: #40cf65;
}

.check-account-btn,
.delete-account-btn,
.view-log-btn,
.start-task-btn,
.stop-task-btn {
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  font-family: inherit;
  background-color: #ffffff;
  border-radius: 6px;
  padding: 5px 10px;
  transition: 0.3s ease;
}
.check-account-btn:hover,
.delete-account-btn:hover,
.view-log-btn:hover,
.start-task-btn:hover,
.stop-task-btn:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.loading.check-account-btn,
.loading.delete-account-btn,
.loading.view-log-btn,
.loading.start-task-btn,
.loading.stop-task-btn {
  pointer-events: none;
  opacity: 0.7;
}
.loading.check-account-btn span,
.loading.delete-account-btn span,
.loading.view-log-btn span,
.loading.start-task-btn span,
.loading.stop-task-btn span {
  position: relative;
}
.loading.check-account-btn span::after,
.loading.delete-account-btn span::after,
.loading.view-log-btn span::after,
.loading.start-task-btn span::after,
.loading.stop-task-btn span::after {
  content: "";
  width: 12px;
  height: 12px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

button {
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  font-family: inherit;
  background-color: #f0f0f0;
  color: #333333;
  padding: 0.5rem 1rem;
}
button:hover {
  background-color: rgb(44.1841004184, 175.8158995816, 78.2426778243);
  color: #ffffff;
}

.accounts-layout,
.proxies-layout,
.parsing-layout {
  display: flex;
  justify-content: space-between;
  flex-direction: column-reverse;
  gap: 20px;
}
.accounts-layout .accounts-section,
.accounts-layout .proxies-section,
.accounts-layout .parsing-section,
.proxies-layout .accounts-section,
.proxies-layout .proxies-section,
.proxies-layout .parsing-section,
.parsing-layout .accounts-section,
.parsing-layout .proxies-section,
.parsing-layout .parsing-section {
  flex-basis: 70%;
}
.accounts-layout .form-section,
.proxies-layout .form-section,
.parsing-layout .form-section {
  flex-basis: 30%;
}

.accounts-list,
.proxies-list,
.parsing-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.accounts-actions,
.proxies-actions {
  display: flex;
  gap: 10px;
}

.log-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.log-modal {
  background-color: #ffffff;
  border-radius: 8px;
  width: 90%;
  max-width: 800px;
  max-height: 80%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.log-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #f0f0f0;
}
.log-modal-header h3 {
  margin: 0;
  color: #333333;
}
.log-modal-header .log-modal-close {
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  font-family: inherit;
  background: none;
  font-size: 24px;
  color: #333333;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.log-modal-header .log-modal-close:hover {
  background-color: #f0f0f0;
  border-radius: 50%;
}

.log-modal-content {
  padding: 1rem 1.5rem;
  overflow-y: auto;
  flex: 1;
  min-height: 500px;
  max-height: 500px;
}
.log-modal-content .logs-list {
  background-color: #f0f0f0;
  padding: 1rem;
  border-radius: 8px;
}
.log-modal-content .logs-list p {
  margin: 10px 0;
  font-size: 14px;
  word-wrap: break-word;
}
.log-modal-content .logs-list p:first-child {
  margin-top: 0;
}
.log-modal-content .logs-list p:last-child {
  margin-bottom: 0;
}
.log-modal-content .logs-list p a {
  color: #40cf65;
  text-decoration: underline;
}

#notifications {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
  align-items: flex-end;
}

.notification {
  background: #333;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.notification.active {
  opacity: 1;
  transform: translateY(0);
}

.divider {
  border: none;
  border-top: 1px solid rgb(201.75, 201.75, 201.75);
  margin: 1rem 0;
}

.container {
  width: 900px;
  background-color: #f0f0f0;
  padding: 50px;
}
.container .flex {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}
.container .flex .flex-i {
  flex-basis: 33%;
}
.container .flex .flex-i .flex-content {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 20px;
}

.logs-container {
  background-color: #f0f0f0;
  border-radius: 8px;
  padding: 1rem;
  margin-top: 1rem;
}
.logs-container .logs-json {
  background-color: #2d3748;
  color: #e2e8f0;
  padding: 1rem;
  border-radius: 6px;
  font-family: "Courier New", monospace;
  font-size: 14px;
  overflow-x: auto;
  white-space: pre-wrap;
  word-wrap: break-word;
  max-height: 600px;
  overflow-y: auto;
}

/*# sourceMappingURL=style.css.map */
