
/* Tweet Placeholder Styles */
.tweet-placeholder {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    border: none;
    padding: 10px 0;
    margin: 10px 0;
    min-height: auto;
    cursor: pointer;
}

.tweet-placeholder:hover {
    background-color: transparent;
    border-color: transparent;
}

.btn-show-tweet {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #1d9bf0; /* Twitter Blue */
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 9999px; /* Pill shape */
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    box-shadow: 0 2px 4px rgba(29, 155, 240, 0.3);
}

.btn-show-tweet:hover {
    background-color: #1a8cd8;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(29, 155, 240, 0.4);
}

.btn-show-tweet:active {
    transform: translateY(0);
}

.btn-show-tweet svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Night Mode Overrides if necessary */
.night-mode .tweet-placeholder {
    background-color: transparent;
    border-color: transparent;
}

.night-mode .tweet-placeholder:hover {
    background-color: transparent;
    border-color: transparent;
}
