.news-container {
    max-width: 600px;
    margin: 40px auto;
    background-color: #1e293b;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 0 10px rgba(0,0,0,0.4);
}

.news-header {
    font-size: 24px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.shake-icon {
    display: inline-block;
    animation: shake 0.8s ease-in-out infinite;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-3px); }
    40% { transform: translateX(3px); }
    60% { transform: translateX(-3px); }
    80% { transform: translateX(3px); }
}

.news-input-row,
.news-action-row {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}

.news-input,
.news-select,
.news-date,
.news-time,
.news-button {
    padding: 10px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
}

.news-select,
.news-date,
.news-time {
    background-color: #334155;
    color: #e2e8f0;
    flex: 1;
}

.news-input {
    background-color: #334155;
    color: #e2e8f0;
    flex: 2;
}

.news-button {
    background-color: #3b82f6;
    color: white;
    cursor: pointer;
    transition: background 0.3s;
}

.news-button:hover {
    background-color: #2563eb;
}

.news-messages {
    max-height: 500px;
    overflow-y: auto;
    display: flex;
    /* flex-direction: column-reverse; */
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
}

.news-message {
    border-radius: 10px;
    padding: 12px;
    border-left: 6px solid;
}

.priority-high {
    background-color: #450a0a;
    border-color: #dc2626;
    color: #fca5a5;
}

.priority-medium {
    background-color: #4a3000;
    border-color: #facc15;
    color: #fde047;
}

.priority-normal {
    background-color: #1e293b;
    border-color: #64748b;
    color: #cbd5e1;
}

.news-meta {
    font-size: 12px;
    color: #94a3b8;
    margin-bottom: 6px;
}

.news-hashtags {
    color: #60a5fa;
    font-weight: bold;
}

.news-btn-group {
    margin-top: 8px;
    display: flex;
    gap: 10px;
}

.news-btn-group button {
    background-color: #475569;
    color: #fff;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
}

.news-btn-group button:hover {
    background-color: #64748b;
}

.text-muted {
    color: #94a3b8;
    font-style: italic;
}