/* floating-personalizer.css */
.fp-floating-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #333;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    font-size: 24px;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: transform 0.2s;
}
.fp-floating-btn:hover {
    transform: scale(1.05);
}

.fp-panel {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 300px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    z-index: 10000;
    display: none;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.fp-panel.open {
    display: block;
}
.fp-panel-header {
    background: #f5f5f5;
    padding: 10px 15px;
    font-weight: bold;
    border-bottom: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.fp-close {
    cursor: pointer;
    font-size: 22px;
    line-height: 1;
}
.fp-panel-content {
    padding: 15px;
    max-height: 400px;
    overflow-y: auto;
}
.fp-section {
    margin-bottom: 20px;
}
.fp-section h4 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 16px;
}
.fp-color-palette {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}
.fp-color-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid #fff;
    box-shadow: 0 0 0 1px #ccc;
    transition: transform 0.1s;
}
.fp-color-btn:hover {
    transform: scale(1.1);
}
.fp-reset-btn {
    background: #2d2d2d;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 5px 10px;
    font-size: 12px;
    cursor: pointer;
    margin-top: 5px;
}
.fp-reset-btn:hover {
    background: #049f82;
}
#fp-logo-upload {
    margin-bottom: 10px;
    width: 100%;
}
#fp-logo-preview img {
    max-width: 100%;
    max-height: 100px;
    margin-top: 10px;
    border: 1px solid #ddd;
    padding: 2px;
}