/* Micro-resume Shared Styles */

/* Poster Modal Custom Styles */
.color-picker-label {
    cursor: pointer;
    display: flex;
    align-items: center;
}

.color-picker-label input {
    display: none;
}

.color-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-block;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.color-picker-label input:checked+.color-circle {
    border-color: #fff;
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.radio-pill {
    cursor: pointer;
}

.radio-pill input {
    display: none;
}

.radio-pill span {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.radio-pill input:checked+span {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.quick-poster-btn:hover {
    background: rgba(74, 222, 128, 0.2) !important;
    transform: translateY(-2px);
}
