/* LinkedIn Integration Styles */
.linkedin-sidebar {
    position: fixed;
    right: 0;
    top: 0;
    width: 400px;
    height: 100vh;
    background: #1a1a2e;
    border-left: 1px solid #333;
    z-index: 1000;
    display: none;
    flex-direction: column;
}

.linkedin-sidebar.open {
    display: flex;
}

.linkedin-header {
    padding: 1rem;
    border-bottom: 1px solid #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.linkedin-content {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.linkedin-action-card {
    background: #252540;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.linkedin-action-card .action-type {
    color: #0077b5;
    font-size: 0.85rem;
    font-weight: 500;
}

.linkedin-action-card .prospect-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0.5rem 0;
}

.linkedin-action-card .message-preview {
    color: #aaa;
    font-size: 0.9rem;
}

.linkedin-btn {
    background: #0077b5;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
}

.linkedin-btn:hover {
    background: #005f8d;
}

.linkedin-btn.secondary {
    background: transparent;
    border: 1px solid #0077b5;
    color: #0077b5;
}

.linkedin-response-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #1a1a2e;
    padding: 1.5rem;
    border-radius: 8px;
    z-index: 1001;
    width: 500px;
    max-width: 90%;
}

.linkedin-response-modal.open {
    display: block;
}

.linkedin-response-modal textarea {
    width: 100%;
    min-height: 120px;
    background: #252540;
    border: 1px solid #333;
    border-radius: 4px;
    color: white;
    padding: 0.75rem;
    resize: vertical;
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 1000;
}

.modal-overlay.open {
    display: block;
}
