/*
Theme Name: SocialMedia Dashboard
Theme URI: https://greger.me
Author: Ihr Name
Author URI: https://greger.me
Description: SocialMedia Dashboard
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: survey-theme
*/
* {
  margin: 0;
  border: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background-color: #ECEFF1;
}

.main {
  padding: 0 1rem;
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

.instagram_post {
  font-size: 80%;
  background-color: #fff;
  border-radius: 10px;
  width: 100%;
  max-width: 400px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.instagram_post a {
  color: inherit;
  text-decoration: none;
}
.instagram_post__text {
  padding: 0.25rem 1rem 1rem 1rem;
}
.instagram_post__text p {
  margin: 0.5rem 0;
}
.instagram_post__header {
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.instagram_post__header__icon img {
  border-radius: 999px;
  height: 1rem;
  width: 1rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.instagram_post__header__date {
  color: #aaa;
}
.instagram_post__media {
  border-radius: 5px;
  overflow: hidden;
}
.instagram_post__media img,
.instagram_post__media video {
  width: 100%;
}
.instagram_post__media__soon {
  aspect-ratio: 1/1;
  background-color: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
}
.instagram_post__buttons {
  padding: 1rem 1rem 0 1rem;
  display: flex;
  justify-content: space-between;
}
.instagram_post__buttons__left {
  display: flex;
  gap: 0.75rem;
}
.instagram_post .swiper-button-next,
.instagram_post .swiper-button-prev {
  color: #fff;
}
.instagram_post .swiper-pagination-bullet-active {
  background-color: #fff;
}

.account_header {
  margin: 3rem auto;
}
.account_header p {
  margin: 0.5rem 0;
}
.account_header__content {
  max-width: 800px;
  margin: auto;
}

.no_posts_found {
  max-width: 400px;
  margin: auto;
}

.plan_login {
  max-width: 500px;
  margin: 3rem auto;
  background-color: #fff;
  padding: 2rem;
  border-radius: 30px;
  max-width: 400px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

form input[type=password] {
  display: block;
  font-size: 2rem;
  margin: 1rem 0;
  border-bottom: 2px solid #000;
  max-width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
}
form input[type=submit] {
  cursor: pointer;
  display: block;
  border: 1px solid #CFD8DC;
  font-size: 1rem;
  margin: 1rem 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  color: #333;
  padding: 0.5rem 1.5rem;
  border-radius: 10px;
  transition: all 0.3s ease-out;
}
form input[type=submit]:hover {
  background-color: #CFD8DC;
}
form input[type=submit].success {
  background-color: #C8E6C9;
  color: #4CAF50;
}
form input:disabled {
  cursor: not-allowed;
}

.posting_box {
  padding: 1.5rem;
  border: 1px solid #263238;
  border-radius: 15px;
  display: flex;
  margin: 2rem auto;
  max-width: 800px;
  gap: 2rem;
  position: relative;
  flex-wrap: wrap;
}
.posting_box.approved {
  background-color: #E8F5E9;
  border-color: #4CAF50;
}
.posting_box.approved .approval_form_feedback {
  display: none;
}
.posting_box.not-approved {
  background-color: #FFEBEE;
  border-color: #F44336;
}
.posting_box .posting_box__details p {
  margin: 1rem 0;
}
.posting_box textarea {
  display: block;
  background-color: transparent;
  width: 100%;
  border: 1px solid #CFD8DC;
  padding: 1rem;
  border-radius: 10px;
  height: 5rem;
  margin: 1rem 0;
  max-width: 100%;
  min-width: 100%;
}
.posting_box select {
  border: 1px solid #CFD8DC;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  display: block;
  background-color: transparent;
  width: 100%;
  font-size: 1rem;
}
.posting_box__post {
  flex: 1 1 auto;
  flex-basis: 10rem;
  max-width: 100%;
}
.posting_box__details {
  flex: 1 1 auto;
  flex-basis: 10rem;
}/*# sourceMappingURL=style.css.map */