body {
    background-color: #000;
    color: #fff;
}

.twitter-border {
    border-color: #2f3336;
}

.twitter-hover:hover {
    background-color: rgba(231, 233, 234, 0.1);
}

.twitter-blue {
    color: #1d9bf0;
}

.twitter-bg-blue {
    background-color: #1d9bf0;
}

.twitter-text-gray {
    color: #71767b;
}

.download-btn {
    opacity: 0;
    transition: opacity 0.2s;
}

.group:hover .download-btn {
    opacity: 1;
}

#image-modal {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    cursor: zoom-out;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

#image-modal.active {
    opacity: 1;
    visibility: visible;
}

#modal-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    cursor: default;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

#image-modal.active #modal-image {
    transform: scale(1);
}

.tweet-image {
    cursor: zoom-in;
    transition: filter 0.2s;
}

.tweet-image:hover {
    filter: brightness(0.9);
}

#tweets-feed {
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word
}
