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

.app {
}

.x-post {
    max-width: 600px;
    margin: 0 auto;
}

.card {
    background-color: #000000 !important;
    border-color: #2F3336 !important;
}

.text-secondary {
    color: #71767B !important;
}

.btn-action {
    color: #71767B;
    transition: all 0.2s;
    background: transparent;
    border: none;
    padding: 8px;
    border-radius: 50%;
}

.btn-action:hover {
    color: #1D9BF0;
    background-color: rgba(29, 155, 240, 0.1);
}

.verified-badge {
    fill: #2563eb;
    color: #2563eb;
    width: 18.75px;
    height: 18.75px;
}

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

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

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

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

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

.post-user-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.name-and-badge {
    display: flex;
    align-items: center;
    gap: 4px;
}

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

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

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

.post-more:hover {
    color: #1D9BF0;
}

.post-content {
    width: 100%;
}

.post-text {
    color: #E7E9EA;
    margin: 4px 0;
    font-size: 15px;
    line-height: 20px;
    overflow-wrap: break-word;
    width: 100%;
    display: flex;
    flex-direction: column;
    /*overflow-y: scroll;
    max-height: 250px;*/
}

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

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

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

.action-item:hover {
    color: #1D9BF0;
}

.action-item i {
    font-size: 16px;
}

.action-item span {
    font-size: 13px;
}

/* Hover efektleri */
.action-item:nth-child(1):hover { color: #1D9BF0; }
.action-item:nth-child(2):hover { color: #00BA7C; }
.action-item:nth-child(3):hover { color: #F91880; }
.action-item:nth-child(4):hover { color: #1D9BF0; }
.action-item:nth-child(5):hover { color: #1D9BF0; }
.action-item:nth-child(6):hover { color: #1D9BF0; }

.full-area {
    height: 100vh;
    position: fixed;
    width: 100%;
}
.left-area {
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    display: flex;
}
.left-area svg {
    color: #fff;
    fill: #fff;
    height: 50%;
    max-height: 380px;
}
.right-area {
    flex-direction: column;
}
.post-area {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 50px;
}

.x-paragraph {
    max-width: 600px;
}

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

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

.copyright-text-area h1 {
    font-size: 0.95rem;
}
.copyright-text-area p {
    font-size: 0.85rem;
}

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

.right-sidebar {
    height: 100%;
}

.right-sidebar svg {
    width: 50%;
    height: auto;
    fill: #fff;
    max-width: 300px;
}

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

.submit-appeal-btn:hover {
    background-color: #e7e2e2;
    color: #000;
}

@media (max-width: 768px) {
    body {
        min-height: auto;
    }
    .app {
        height: auto!important;
        margin-top: 30px;
        padding: 0 15px;
    }
    .app-first {
        height: auto;
        min-height: auto;
    }
    .right-sidebar svg {
        width: 50px;
    }
    .post-text {
        max-height: 300px;
        overflow-y: scroll;
    }
}