.gg-similar-block {
margin: 26px 0;
padding: 18px 20px;
background: #f5f7fb;
border-radius: 16px;
}
.gg-title {
font-size: 20px;
font-weight: 700;
margin-bottom: 14px;
color: #111827;
} #gg-search {
width: 100%;
padding: 10px 14px;
border-radius: 10px;
border: 1px solid #d1d5db;
background: #fafafa;
font-size: 15px;
margin-bottom: 14px;
} .gg-list {
display: flex;
flex-direction: column;
gap: 14px;
}
.gg-item {
display: flex;
align-items: center;
gap: 16px;
padding: 14px;
background: #ffffff;
border-radius: 14px;
border: 1px solid #e5e7eb;
box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
text-decoration: none !important;
}
.gg-item:hover {
background: #f9fafb;
}
.gg-thumb {
width: 88px;
height: 88px;
border-radius: 12px;
object-fit: cover;
}
.gg-meta {
display: flex;
flex-direction: column;
}
.gg-name {
font-size: 16px;
font-weight: 700;
color: #111827;
margin-bottom: 4px;
}
.gg-codes {
font-size: 15px;
color: #6b7280;
} .gg-empty {
margin-top: 6px;
padding: 12px;
text-align: center;
font-size: 14px;
color: #6b7280;
background: #ffffff;
border-radius: 10px;
border: 1px solid #e5e7eb;
} .gg-propose-wrapper {
width: 100%;
max-width: 360px;
margin: 20px auto 0;
position: relative;
} .gg-propose-trigger {
width: 100%;
padding: 12px 16px;
background: #17a2b8;
color: #ffffff;
border-radius: 14px 14px 0 0;
border: 1px solid #14899f;
border-bottom: none; 
font-size: 15px;
font-weight: 700;
text-align: center;
cursor: pointer;
transition: background 0.25s ease;
}
.gg-propose-trigger:hover {
background: #138496;
} .gg-propose-dropdown {
position: absolute;
top: 100%;
left: 0;
width: 100%;
background: #ffffff;
border-radius: 0 0 14px 14px;
border: 1px solid #14899f;
border-top: none;
padding: 16px 16px 18px;
box-shadow: 0 6px 18px rgba(0,0,0,0.12);
transform-origin: top;
transform: scaleY(0);
opacity: 0;
transition: transform .25s ease, opacity .25s ease;
z-index: 99;
}
.gg-propose-dropdown.active {
transform: scaleY(1);
opacity: 1;
} .gg-propose-input {
width: 100%;
padding: 8px 10px;
border-radius: 8px;
border: 1px solid #d1d5db;
background: #fafafa;
font-size: 14px;
margin-bottom: 20px !important;
} .gg-propose-footer {
display: flex;
justify-content: flex-end;
gap: 8px;
} .gg-btn {
padding: 6px 12px; 
min-width: 80px;   
height: 34px;    
border-radius: 8px;
font-size: 13px;
font-weight: 700;
cursor: pointer;
border: none;
}
.gg-btn-green {
background: #22c55e;
color: #ffffff;
}
.gg-btn-green:hover {
background: #16a34a;
}
.gg-btn-red {
background: #ef4444;
color: #ffffff;
}
.gg-btn-red:hover {
background: #dc2626;
} .gg-toast {
position: fixed;
bottom: 24px;
left: 50%;
transform: translateX(-50%) translateY(20px);
background: #ffffff;
padding: 12px 20px;
border-radius: 12px;
border: 1px solid #e5e7eb;
box-shadow: 0 6px 20px rgba(0,0,0,0.15);
font-size: 15px;
font-weight: 600;
color: #111827;
opacity: 0;
pointer-events: none;
transition: .25s ease;
z-index: 1000000;
}
.gg-toast.show {
opacity: 1;
transform: translateX(-50%) translateY(0);
} @media (max-width: 480px) {
.gg-similar-block {
padding: 14px 12px;
}
.gg-thumb {
width: 70px;
height: 70px;
}
.gg-propose-wrapper {
max-width: 100%;
}
}