.dgf-f-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5);
opacity: 0;
visibility: hidden;
transition: all 0.3s ease;
z-index: 9998; }
.dgf-f-overlay.active {
opacity: 1;
visibility: visible;
} .dgf-f-panel {
position: absolute;
right: -420px;
top: 0;
width: 400px;
max-width: 90vw;
height: 100%;
background: #fff;
box-shadow: -2px 0 20px rgba(0, 0, 0, 0.1);
transition: right 0.3s ease;
display: flex;
flex-direction: column;
border-top-left-radius: 10px;
}
.dgf-f-overlay.active .dgf-f-panel {
right: 0;
} body.dgf-f-open {
overflow: hidden;
} .dgf-f-header {
padding: 8px 25px; display: flex;
justify-content: space-between;
align-items: center;
background: #f9f9f9;
border-top-left-radius: 10px;
}
.dgf-f-header h3 {
margin: 0;
font-size: 20px;
font-weight: 600;
color: #333;
}
.dgf-f-close {
width: 40px;
height: 40px;
border: none;
background: #f9f9f9;
cursor: pointer;
border-radius: 6px;
font-size: 28px;
line-height: 1;
color: #666;
transition: all 0.2s;
padding: 0;
display: flex;
align-items: center;
justify-content: center;
}
.dgf-f-close:hover {
background-color:#f9f9f9;
color: #999999;
} .dgf-f-search {
padding: 15px 20px;  }
.dgf-f-search input[type="text"] {
width: 100%;
padding: 6px 15px;
border:1px solid #ccc;
border-radius: 25px;
font-size: 14px;
background: #fff;
transition: border-color 0.2s;
}
.dgf-f-search input:focus {
outline: none;
border-color: #999;
}
.dgf-f-search input::placeholder {
color: #999;
} .dgf-f-content {
flex: 1;
overflow-y: auto;
padding: 10px;
}
.dgf-f-content a {
display: block;
padding: 14px 15px;
text-decoration: none;
color: #333;
border-radius: 6px;
transition: all 0.2s;
margin-bottom: 4px;
font-size: 17px;
}
.dgf-f-content a:hover {
background: #f5f5f5;
transform: translateX(3px);
} .dgf-f-content a[style*="display: none"] {
display: none !important;
} .dgf-f-content::-webkit-scrollbar {
width: 8px;
}
.dgf-f-content::-webkit-scrollbar-track {
background: #f5f5f5;
}
.dgf-f-content::-webkit-scrollbar-thumb {
background: #ccc;
border-radius: 4px;
}
.dgf-f-content::-webkit-scrollbar-thumb:hover {
background: #999;
} @media (max-width: 768px) {
.dgf-f-panel {
width: 90%;
max-width: 90%;
right: -100%;
}
.dgf-f-header h3 {
font-size: 18px;
}
.dgf-f-content a {
padding: 16px 15px;
font-size: 16px;
}
}