body {
  font-family: Arial, sans-serif;
  background-color: #2c3e50;
  color: white;
}

header {
  background-color: #3498db;
  padding: 1em;
  text-align: center;
}
header h1 {
  margin: 0;
  color: white;
}

.contents {
  max-width: 800px;
  margin: auto;
  padding: 20px;
}

.textHeader {
  max-width: 600px;
  margin: auto;
  text-align: center;
  margin-bottom: 40px;
}

.button {
  background-color: #3498db;
  padding: 0.5em 1em;
  text-decoration: none;
  color: white;
  white-space: nowrap;
  display: inline-block;
  border-radius: 5px;
}
.button.large {
  padding: 1em 2em;
}
.button:hover {
  background-color: rgb(33.1380753138, 125.1882845188, 186.8619246862);
}

ul {
  padding-left: 0;
  list-style: none;
}
ul li {
  background-color: rgb(62.0967741935, 87.5, 112.9032258065);
  margin: 0.5em 0;
  padding: 1em;
  border-radius: 5px;
}

.clickable li:not(.active) {
  cursor: pointer;
}
.clickable li:not(.active):hover {
  background-color: rgb(80.1935483871, 113, 145.8064516129);
}

.clickable .hidden {
  transform: scaleY(0);
  transform-origin: top;
  transition: 0.3s ease;
  padding-top: 0;
  opacity: 0;
  pointer-events: none;
  height: 0;
  overflow: hidden;
}

.clickable .active {
  background-color: #3498db;
  transition: 0.5s;
  cursor: pointer;
}

.clickable .active .hidden {
  transform: scaleY(1);
  padding-top: 20px;
  height: auto;
  opacity: 1;
  pointer-events: auto;
}

form {
  display: flex;
  align-items: center;
  flex-direction: column;
  grid-gap: 10px;
  padding: 20px;
  justify-content: center;
}
form.fullpage {
  min-height: 90vh;
}

.navigation {
  text-align: right;
  color: white;
}

label {
  display: flex;
  flex-direction: row;
  width: 100%;
  text-align: left;
  white-space: nowrap;
}
label input {
  width: 100%;
}
label input[type=checkbox] {
  width: auto;
}

a,
button {
  color: black;
  text-decoration: none;
  margin-left: 10px;
  background-color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 14px;
  outline: none;
  border: 1px solid black;
}
a:hover,
button:hover {
  background-color: #f0f0f0;
}

table {
  text-align: center;
}

.ace_editor {
  height: 300px;
  width: 100%;
}

table {
  border-collapse: collapse;
  margin: auto;
}

th,
td {
  padding: 10px;
  border: 1px solid white;
}

th {
  background-color: rgb(5, 5, 12);
  color: white;
  font-weight: bold;
}

tr {
  background-color: rgb(35, 35, 55);
  color: white;
}

tr:nth-child(odd) {
  background-color: rgb(42, 42, 73);
  color: white;
}

i {
  text-align: left;
}

.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 50%;
  width: 100%;
  overflow: auto;
  height: 100vh;
  margin: auto;
  transform: translateX(-50%);
}
.popup.active {
  display: block;
}
.popup::before {
  content: "";
  position: fixed;
  top: 0px;
  right: 0px;
  height: 100%;
  width: 100%;
  background: black;
  opacity: 0.5;
  z-index: 1;
  padding-top: 100%;
}
.popup span.close {
  content: "X";
  position: absolute;
  top: 10px;
  right: 10px;
  height: 30px;
  width: 30px;
  border: 1px solid black;
  cursor: pointer;
  text-align: center;
  font-size: 16px;
  line-height: 30px;
}
.popup .contents {
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: start;
  width: 600px;
  background: white;
  color: black;
  padding: 40px;
  position: relative;
  margin: 40px auto;
}
.popup form {
  grid-gap: 0px;
  padding: 0px;
  z-index: 2;
  text-align: left;
}
.popup form textarea {
  width: 100%;
  height: 150px;
}
.popup form label {
  text-align: left;
  width: 100%;
}
.popup form label > * {
  margin-left: 10px;
}
.popup form label strong {
  margin: 0;
}
.popup .navigation {
  width: 100%;
}
.popup .navigation .left {
  float: left;
  margin-right: 10px;
  margin-left: 0px;
}
.popup .navigation .right {
  float: right;
  margin-right: 0px;
  margin-left: 10px;
}
.json-editor {
  width: 100%;
  height: 300px;
}

#name {
  text-transform: uppercase;
}

#dbConfig {
  width: 100%;
  border: 1px solid black;
  padding: 10px;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  padding: 20px;
}
.card-container .card {
  background-color: #ffffff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 1rem;
  text-align: left;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.card-container .card a {
  color: #007bff;
  text-decoration: none;
}
.card-container .card img {
  border-radius: 4px;
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.card-container .card p {
  margin: 10px 0;
  color: black;
}
.card-container .card .card-content .card-img-container {
  position: relative;
  margin-bottom: 0.5rem;
}
.card-container .card .card-content .card-img-container .post-type-label {
  position: absolute;
  top: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.8);
  color: black;
  padding: 0.25rem 0.5rem;
  border-radius: 0 4px 0 4px;
}
.card-container .card .card-content .post-details {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  color: black;
}
.card-container .card .card-content .post-details .platform {
  font-size: 1.35rem;
  font-weight: 600;
}
.card-container .card .card-content .post-details .date {
  font-size: 0.9rem;
}
.card-container .card .card-footer {
  position: relative;
  margin-top: 1rem;
}
.card-container .card .card-footer .action-buttons {
  display: flex;
  gap: 0.5rem;
}
.card-container .card .card-footer .action-buttons .button {
  width: 100%;
  text-align: center;
  color: white;
}
.card-container .card .card-footer .post-stats {
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
  justify-content: space-around;
}
.card-container .card .card-footer .post-stats .stat-icon {
  color: black;
  display: flex;
  align-items: center;
}
.card-container .card .card-footer .post-stats .stat-icon svg {
  margin-right: 0.25rem;
}

.pagination-container {
  padding: 2rem;
  margin: auto;
  text-align: center;
}

#feedList {
  width: 100%;
  box-sizing: content-box;
}

.feed {
  width: 100%;
  padding: 20px;
  border: 1px solid;
  box-sizing: border-box;
  margin: 10px 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 8px;
}

#processing {
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  font-size: 40px;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 100;
}

#processing.active {
  display: flex;
}

button,
.button {
  cursor: pointer;
  padding: 8px 15px;
  margin: 2px 10px;
}
button:hover,
.button:hover {
  background-color: #5b5b5b;
  color: white;
}

.green {
  background-color: green;
  color: white;
  font-weight: bold;
}
.green:hover {
  background-color: darkgreen;
}

.red {
  background-color: red;
  color: white;
  font-weight: bold;
}
.red:hover {
  background-color: darkred;
}

.orange {
  background-color: orange;
  color: white;
  font-weight: bold;
}
.orange:hover {
  background-color: darkorange;
}

.button-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px; /* Adjust the gap between buttons as needed */
}
.button-container button {
  flex: 1 1 calc(33.333% - 10px); /* 33.333% width for 3 buttons per row minus the gap */
  box-sizing: border-box; /* Ensure padding and border are included in the button's width */
  margin: 0;
}

.copied {
  background-color: rgb(209, 248, 209);
}

.sql {
  background: black;
  color: white;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  overflow-x: auto;
  overflow-y: hidden;
}

#sqlCommands {
  width: 100%;
}

hr {
  border: 1px solid grey;
  width: 100%;
  margin: 20px 0;
}

.airtable-config-wrapper {
  width: -webkit-fill-available;
  border: 1px solid black;
  padding: 1rem;
}

.flex-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  width: 100%;
}
.flex-box > * {
  flex: 1;
}
.flex-box input {
  min-width: 300px;
  height: 28px;
}

.break-word {
  word-break: break-all;
}

@media (max-width: 768px) {
  .card-container {
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
  }
}

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