This commit is contained in:
2026-02-05 22:21:53 +05:00
parent 220a356574
commit 3a2b47c791
4 changed files with 128 additions and 0 deletions

View File

@@ -2953,4 +2953,25 @@ small {
.drag-over {
background-color: #e7f3ff !important;
border: 2px dashed #007bff !important;
}
.chat-btn {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
border: none;
border-radius: 6px;
padding: 8px 12px;
cursor: pointer;
font-size: 16px;
margin-right: 5px;
transition: all 0.3s ease;
box-shadow: 0 2px 5px rgba(102, 126, 234, 0.3);
}
.chat-btn:hover {
transform: translateY(-2px);
box-shadow: 0 4px 10px rgba(102, 126, 234, 0.4);
}
.chat-btn:active {
transform: translateY(0);
}