body {
    background-color: #000000;
    color: #E7E9EA;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    min-height: 100vh;
}

.ap_main_container {
}

.ap_post_wrapper {
    background-color: #000000;
    border: 1px solid #2F3336;
    border-radius: 12px;
    width: 100%;
    padding: 12px;
}

.ap_post {
    display: flex;
    flex-direction: column;
    position: relative;
}

.ap_post_header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    width: 100%;
}

.ap_post_avatar {
    margin-right: 12px;
    flex-shrink: 0;
}

.ap_post_avatar img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.ap_post_user_details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ap_name_and_icon {
    display: flex;
    align-items: center;
    gap: 4px;
}

.ap_display_name {
    font-weight: 700;
    font-size: 15px;
    color: #E7E9EA;
}

.ap_username {
    color: #71767B;
    font-size: 14px;
}

.ap_post_options {
    color: #71767B;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
}

.ap_post_options:hover {
    color: #1D9BF0;
}

.ap_post_content {
    width: 100%;
}

.ap_post_text {
    color: #E7E9EA;
    margin: 4px 0;
    font-size: 15px;
    line-height: 20px;
    overflow-wrap: break-word;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.ap_post_text img {
    max-width: 100%;
    height: auto;
    margin: 10px 0;
}

.ap_post_actions {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
    color: #71767B;
}

.ap_action_item {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    transition: color 0.2s;
}

.ap_action_item:hover {
    color: #1D9BF0;
}

.ap_action_item i {
    font-size: 16px;
}

.ap_action_item span {
    font-size: 13px;
}

.ap_action_item:nth-child(1):hover { color: #1D9BF0; }
.ap_action_item:nth-child(2):hover { color: #00BA7C; }
.ap_action_item:nth-child(3):hover { color: #F91880; }
.ap_action_item:nth-child(4):hover { color: #1D9BF0; }
.ap_action_item:nth-child(5):hover { color: #1D9BF0; }
.ap_action_item:nth-child(6):hover { color: #1D9BF0; }

.ap_text_block {
    max-width: 600px;
}

.ap_text_block h1 {
    font-weight: 700;
    font-size: 1.36rem;
    margin-bottom: 15px;
    color: #E7E9EA;
}

.ap_text_block p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #71767B;
    margin-bottom: 1rem;
}

.ap_content_container {
    max-width: 600px;
    width: 100%;
    padding: 50px 0;
}

.ap_side_panel {
    height: 100%;
}

.ap_side_panel img {
    width: 50%;
    height: auto;
    max-width: 300px;
}

.ap_appeal_btn {
    background-color: #fff;
    border: none;
    padding: 12px 32px;
    font-weight: 600;
    border-radius: 25px;
    transition: background-color 0.2s;
}

.ap_appeal_btn:hover {
    background-color: #e7e2e2;
    color: #000;
}

@media (max-width: 768px) {
    body {
        min-height: auto;
    }
    .ap_main_container {
        height: auto !important;
        margin-top: 30px;
        padding: 0 15px;
    }
    .ap_main_row {
        height: auto;
        min-height: auto;
    }
    .ap_side_panel img {
        width: 50px;
    }
    .ap_post_text {
        max-height: 300px;
        overflow-y: scroll;
    }
}