.pl-tool-container {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    max-width: 600px;
    margin: 2rem auto;
    font-family: 'Inter', sans-serif;
}

.pl-tool-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pl-tool-header h3 {
    margin: 0;
    font-size: 1.5rem;
    color: #1f2937;
}

.pl-tool-header p {
    color: #6b7280;
    margin-top: 0.5rem;
}

.pl-tool-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.pl-input-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #374151;
}

.pl-input-group input[type="number"],
.pl-input-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
}

.pl-radio-group {
    display: flex;
    gap: 1.5rem;
}

.pl-radio-group label {
    font-weight: normal;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.pl-tool-results {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.pl-result-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.pl-highlight {
    font-weight: bold;
    color: #1f2937;
}

.pl-highlight-primary {
    font-weight: bold;
    color: #2563eb;
    font-size: 1.25rem;
}

.pl-btn-primary {
    width: 100%;
    background: #2563eb;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.pl-btn-primary:hover {
    background: #1d4ed8;
}

.pl-btn-ghost {
    background: transparent;
    color: #6b7280;
    border: none;
    cursor: pointer;
    text-decoration: underline;
}

/* Phone Chooser Specifics */
.pl-range-inputs {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.pl-priority-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.pl-priority-row select {
    width: auto;
    padding: 0.5rem;
}

.pl-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.pl-phone-card-result {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    position: relative;
}

.pl-phone-card-result img {
    width: 100%;
    height: 120px;
    object-fit: contain;
    margin-bottom: 0.5rem;
}

.pl-phone-card-result h4 {
    margin: 0.5rem 0;
    font-size: 1rem;
}

.pl-rank {
    position: absolute;
    top: -10px;
    left: -10px;
    background: #2563eb;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.pl-specs-mini {
    font-size: 0.8rem;
    color: #6b7280;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.pl-btn-sm {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #f3f4f6;
    color: #374151;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.9rem;
}

.pl-btn-sm:hover {
    background: #e5e7eb;
}