#dffc-evolution-chart-container {
position: absolute;
z-index: 9999;
background-color: rgba(255, 255, 255, 0.98); border: 1px solid #e64537; padding: 20px 10px 10px 10px;
border-radius: 5px;
max-width: 100%;
box-sizing: border-box;
box-shadow: 0px 4px 10px rgba(230, 69, 55, 0.4); }  @media (max-width: 768px) {
#dffc-evolution-chart-container {
width: 90vw;
max-width: 90%;
left: 5vw !important;
padding: 20px 10px 10px 10px;
box-sizing: border-box;
} } .update-history-avatar img {
width: 40px; height: auto;
max-width: 100%; border-radius: 50%;
object-fit: cover;
} .dffc-frontend-history {
background: white;
border: 2px solid #e64537;
border-radius: 16px;
padding: 32px;
margin: 48px 0;
box-shadow: 0 4px 12px rgba(230, 69, 55, 0.1);
}
.dffc-history-header {
display: flex;
align-items: center;
gap: 16px;
margin-bottom: 32px;
padding-bottom: 24px;
border-bottom: 2px solid #e5e7eb;
}
.dffc-history-icon {
width: 56px;
height: 56px;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
font-size: 24px;
color: white;
}
.dffc-history-title {
font-size: 24px;
font-weight: 700;
color: #1f2937;
margin: 0 0 4px 0;
}
.dffc-history-subtitle {
font-size: 14px;
color: #6b7280;
margin: 0;
}
.dffc-history-timeline {
position: relative;
padding-left: 40px;
}
.dffc-history-timeline::before {
content: '';
position: absolute;
left: 24px;
top: 0;
bottom: 0;
width: 2px;
background: linear-gradient(to bottom, 
#e64537 0%, 
#fecaca 100%);
}
.dffc-history-item {
position: relative;
margin-bottom: 24px;
animation: slideInFromLeft 0.5s ease-out;
}
@keyframes slideInFromLeft {
from {
opacity: 0;
transform: translateX(-20px);
}
to {
opacity: 1;
transform: translateX(0);
}
}
.dffc-history-item:last-child {
margin-bottom: 0;
}
.dffc-history-marker {
position: absolute;
left: -40px;
top: 8px;
width: 16px;
height: 16px;
background: #e64537;
border: 3px solid white;
border-radius: 50%;
box-shadow: 0 0 0 2px #e64537;
z-index: 1;
}
.dffc-history-content {
background: #fafafa;
border: none;
border-radius: 12px;
padding: 20px;
box-shadow: none;
transition: all 0.3s ease;
}
.dffc-history-content:hover {
background: #f5f5f5;
transform: translateY(-1px);
}
.dffc-history-meta {
margin-bottom: 12px;
}
.dffc-history-user {
display: flex;
align-items: center;
gap: 12px;
}
.dffc-history-avatar {
border-radius: 50%;
width: 48px;
height: 48px;
border: 2px solid #f3f4f6;
}
.dffc-history-username {
font-weight: 600;
color: #1f2937;
text-decoration: none;
font-size: 14px;
}
.dffc-history-username:hover {
color: #e64537;
text-decoration: underline;
}
.dffc-history-date {
display: block;
font-size: 13px;
color: #6b7280;
margin-top: 2px;
}
.dffc-history-update {
padding: 16px;
background: #fafafa;
border-radius: 10px;
border: 1px solid #f0f0f0;
}
.dffc-history-update-main {
display: flex;
flex-direction: column;
gap: 12px;
}
.dffc-history-variable {
font-weight: 600;
color: #6b7280;
font-size: 13px;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.dffc-history-value-container {
display: flex;
align-items: center;
gap: 12px;
flex-wrap: wrap;
}
.dffc-history-value {
font-weight: 700;
color: #1f2937;
font-size: 18px;
background: white;
padding: 6px 12px;
border-radius: 6px;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
border: 1px solid #e5e7eb;
}
.dffc-change {
display: inline-flex;
align-items: center;
gap: 4px;
padding: 5px 12px;
border-radius: 16px;
font-size: 11px;
font-weight: 600;
letter-spacing: 0.3px;
white-space: nowrap;
}
.dffc-change-up {
background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
color: #065f46;
border: 1px solid #6ee7b7;
}
.dffc-change-down {
background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
color: #991b1b;
border: 1px solid #fca5a5;
}
.dffc-change-neutral {
background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
color: #6b7280;
border: 1px solid #d1d5db;
} @media (max-width: 768px) {
.dffc-frontend-history {
padding: 24px 20px;
margin: 32px 0;
border-radius: 12px;
}
.dffc-history-header {
flex-direction: column;
align-items: flex-start;
gap: 12px;
margin-bottom: 24px;
padding-bottom: 20px;
}
.dffc-history-icon {
width: 48px;
height: 48px;
font-size: 24px;
}
.dffc-history-title {
font-size: 20px;
}
.dffc-history-timeline {
padding-left: 32px;
}
.dffc-history-timeline::before {
left: 20px;
}
.dffc-history-marker {
left: -32px;
width: 12px;
height: 12px;
border-width: 2px;
}
.dffc-history-content {
padding: 16px;
}
.dffc-history-avatar {
width: 40px;
height: 40px;
}
.dffc-history-update {
padding: 12px;
}
.dffc-history-variable {
font-size: 12px;
}
.dffc-history-value {
font-size: 16px;
padding: 5px 10px;
}
.dffc-change {
font-size: 10px;
padding: 4px 8px;
}
.dffc-history-value-container {
flex-direction: row;
align-items: center;
gap: 8px;
flex-wrap: wrap;
}
}