body {
    display: flex;
    min-height: 100vh;
    margin: 0;
    
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #121212; 
    color: #e0e0e0;
    /* overflow-x: hidden; */
}

.hidden {
    display: none !important; 
}

#main-container {
    width: 80%;
    min-height: 100vh;
    padding-top: 75px;
    padding-left: 60px;
}

@media (max-width: 767px) {
    #main-container {
        padding-right: 8px;
    }
}

.dash-content {
    display: flex;
    flex-direction: column;
    margin-bottom: 50px;
}

.post {
    max-width: 650px;
}

.content-box {
    max-width: 600px; 
    margin-bottom: 25px;
    padding: 20px;
    
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInMoveUp 1s ease-out forwards;
    
    background: linear-gradient(110deg, #432d72, #290b58); 
    
    line-height: 1.6;
    color: #ededed; 
    border-radius: 8px;
}

@keyframes fadeInMoveUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-box-header-sm {
    display: block;
    margin-bottom: 20px;
    font-weight: bold;
}

.desc-label {
    float: right;
    padding: 6px;
    rotate: 6deg;
    
    background-color: coral;
    border-radius: 6px;
    font-weight: bold;
}

.large-text-input {
    height: 300px;
    margin-bottom: 20px;
    padding: 10px;
    border-radius: 7px;
    font-size: 1em;
    font-family:Arial, Helvetica, sans-serif;
    background-color: #333;
    color: #fff;
    font-size: 1rem;
}

@media (min-width: 768px) {
    .large-text-input {
        max-width: 60%;
    }
}

.dash-content .buttons {
    display: flex;
    justify-content: space-evenly;
}

button.primary {
    height: 45px;
    width: 125px;
    padding: 10px;
    background: linear-gradient(to right, #79c7ff, #65ffc1);
    border: none;
    border-radius: 4px;
    color: #000;
    font-weight: bold;
    cursor: pointer;
}

button.primary:hover {
    border: solid 1px #e0e0e0;
    background: #121212;
    color: #e0e0e0;
}

button.secondary {
    height: 45px;
    width: 125px;
    padding: 10px;
    border: none;
    border-radius: 4px;
    background-color: #121212;
    color: #e0e0e0;
    cursor: pointer;
}

button.secondary:hover {
    border: solid 1px #e0e0e0;
}

#confirm-post .buttons {
    display: flex;
    justify-content: space-evenly;
}

.loading-square {
    position: relative;
    left: 200px;
    width: 200px;
    height: 200px;
    border-radius: 10px;
    animation: gradientLoop 5s infinite;
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    background-size: 400% 400%;
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    padding: 20px;
    background-color: #121212;
}

.footer div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.2em;
    height: 1.2em;
    
    color: #121212;
    font-size: 1.2em;
    cursor: pointer;
    background-color: #ff4f9e;
    border-radius: 50%;
}

.footer-dashboard {
    position: fixed;
    bottom: 0;
    right: 0;
    display: flex;
    justify-content: flex-end;
    padding: 20px;
}

.footer-dashboard div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.2em;
    height: 1.2em;
    
    color: #121212;
    font-size: 1.2em;
    cursor: pointer;
    background-color: #ff4f9e;
    border-radius: 50%;
}

@media (max-width: 767px) {
    .footer div {
        color: #ff4f9e;
        background-color: transparent;
    }

    .footer-dashboard div {
        color: #ff4f9e;
        background-color: transparent;
    }
}


.guide-bubble {
    display: none;
    position: fixed;
    max-width: 300px;
    z-index: 1000;
    bottom: 60px;
    right: 20px;
    padding: 15px;

    background: #1e1e1e;
    border: 1px solid #333;
    border-radius: 8px;
    color: #e0e0e0;
}

.guide-bubble p {
    margin-bottom: 11px;
}

@keyframes gradientLoop {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@media (max-width: 767px) {
    .loading-square {
        left: 50px;
    }
}

.screener textarea {
    width: 90%;
}

@media (min-width: 768px) {
    .screener textarea {
        max-width: 90%;
    }
}